Add support for Chrome extension style JSON file
See original GitHub issueIs your feature related to a specific framework or general for this extension
CHrome Extension JSON formatIs your feature request related to a problem? Please describe.
Accroding to https://developer.chrome.com/extensions/i18n , i18n file for Chrome Extension looks like
{
"msg": { "message": "translate 1", "description": "you should translate it as ..." },
"msg_2": { "message": "translate 2" }
}
It has the shape:
type ChromeExtensionLikeFormat = Record<string, {
message: string,
description?: string
}>
Additional context
Current behavior
For longer message
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Add support for Chrome extension style JSON file #157 - GitHub
And the json format is described above. chrome.i18n or browser.i18n is a global variable in the chrome extension so there is no need...
Read more >JSON Formatter - Chrome
Makes JSON easy to read. Open source. The original JSON Formatter, now with dark mode Auto-formats JSON when you load it in a...
Read more >Manifest file format - Chrome Developers
Every extension requires a JSON-formatted file, named manifest.json , that provides important information. This file must be located in the ...
Read more >How to get easy-to-read JSON trees with this free Chrome ...
Now, here is a Chrome and Firefox extension that does the formatting and makes your JSONs instantly pretty inside your browser, without having ......
Read more >Create a Chrome extension to modify a website's HTML or CSS
Introduction · No access is required to the websites source files · The extension shares assets with the page, so matching styling is...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@Jack-Works The chrome extension is supported as a framework. Please update to v0.10.1 and check it out.
Note you may need to do the following things to make it work
"i18n-ally.enabledFrameworks": "chrome-ext"
My working config for reference
Cool! I’ll try it out! Thank you