Inspect and view changes in Readefine - Reword the Internet 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,
"name": "Readefine - Reword the Internet",
"version": "6.0.1",
"permissions": [
"storage"
],
"description": "Turn confusing jargon into simple English, or just give the internet a fresh spin.",
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"assets/popper.min.js",
"assets/readefine_tooltip-bundle.umd.min.js",
"content/content.js"
],
"css": [
"content/content.css"
],
"exclude_matches": [
"https://app.readefine.ai/*",
"https://staging.readefine.ai/*",
"http://127.0.0.1/*"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": [
"https://app.readefine.ai/*",
"https://staging.readefine.ai/*",
"http://127.0.0.1/*"
],
"js": [
"content/check_login_status_cs.js"
],
"run_at": "document_start"
}
],
"homepage_url": "https://app.readefine.ai",
"action": {
"default_icon": "assets/exticon.png"
},
"background": {
"scripts": [
"background/serviceWorker.js"
],
"type": "module"
},
"icons": {
"16": "assets/exticon.png",
"48": "assets/exticon.png"
},
"web_accessible_resources": [
{
"resources": [
"assets/*",
"popup/*",
"content/*",
"select-to-readefine/*"
],
"matches": [
"<all_urls>"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "readefine@app",
"strict_min_version": "58.0"
}
},
"sidebar_action": {
"default_icon": {
"16": "assets/exticon.png",
"32": "assets/exticon.png"
},
"default_title": "Readefine",
"default_panel": "/popup/index.html",
"open_at_install": true
}
}