Quick Translation - Quick and easy to use translation tool. Powered by Google Translate
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"author": "Quick Translation",
"background": {
"service_worker": "js/background.js"
},
"action": {
"default_popup": "html/popup.html",
"default_title": "__MSG_extName__"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"css/content.css"
],
"js": [
"js/content.js"
]
}
],
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "translator",
"enabled": true,
"path": "rules/translator.json"
}
]
},
"web_accessible_resources": [
{
"resources": [
"icons/*"
],
"matches": [
"<all_urls>"
]
}
],
"default_locale": "en",
"manifest_version": 3,
"minimum_chrome_version": "88.0",
"name": "__MSG_extName__",
"description": "__MSG_extShortDesc__",
"permissions": [
"alarms",
"declarativeNetRequest",
"scripting",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"version": "2.0.1",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}