Inspect and view changes in Graphic Novel Screen Translator 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Graphic Novel Screen Translator",
"description": "An easy to use extension for translating any text on the webpage to English",
"version": "2.0",
"icons": {
"16": "images/icon.png",
"32": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"content-custom-area.js"
],
"css": [
"content-custom-area.css"
]
},
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"content-full-page.js"
],
"css": [
"content-full-page.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"images/*"
],
"matches": [
"https://*/*",
"http://*/*"
],
"use_dynamic_url": true
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "images/icon.png",
"default_popup": "popup.html"
},
"host_permissions": [
"https://*/*"
],
"permissions": [
"activeTab",
"tabs"
]
}