Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Locale Switcher",
"description": "Lets you quickly switch the browser locale to test localization on your website.",
"version": "1.3.1",
"icons": {
"256": "icon\/256.png"
},
"homepage_url": "https:\/\/github.com\/locale-switcher\/locale-switcher",
"permissions": [
"storage",
"declarativeNetRequest",
"activeTab"
],
"web_accessible_resources": [
{
"matches": [
"*:\/\/*\/*"
],
"resources": [
"override-language.js"
]
}
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+L"
}
}
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"run_at": "document_start",
"js": [
"content-scripts\/content.js"
]
}
]
}