Provides translations on highlight, and review notecards, for articles you read in foreign languages.
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",
"name": "Immersion Reader",
"options_page": "options.html",
"browser_action": {
"default_popup": "popup.html"
},
"web_accessible_resources": [
"content.bundle.js"
],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"inject.bundle.js"
]
}
],
"background": {
"scripts": [
"background.bundle.js"
],
"persistent": true
},
"permissions": [
"http://*/",
"https://*/"
],
"manifest_version": 2,
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"description": "Provides translations on highlight, and review notecards, for articles you read in foreign languages.",
"version": "0.4.0"
}