Inspect and view changes in Từ điển Anh Việt ENVI source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"version": "1.0.8",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "vi",
"icons": {
"16": "icons/icon_16.png",
"32": "icons/icon_32.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval' ; object-src 'none'"
},
"permissions": [
"storage",
"tts",
"tabs",
"scripting",
"contextMenus",
"webNavigation"
],
"host_permissions": [
"<all_urls>"
],
"omnibox": {
"keyword": "envi"
},
"web_accessible_resources": [
{
"resources": [
"pdfjs/web/viewer.html",
"ocr.html",
"opencvHandler.html"
],
"matches": [
"<all_urls>"
]
}
],
"sandbox": {
"pages": [
"opencvHandler.html"
]
},
"content_scripts": [
{
"js": [
"contentScript.js"
],
"css": [
"bootstrapcustom.min.css"
],
"run_at": "document_idle",
"all_frames": true,
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Từ điển Anh Việt ENVI",
"default_popup": "popup.html"
},
"options_ui": {
"page": "popup.html"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}