Inspect and view changes in rewrited.news 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
{
"name": "rewrited.news",
"version": "0.9.4",
"description": "The official rewrited.news web browser extension!",
"homepage_url": "https://rewrited.news",
"author": "BackMe.org",
"manifest_version": 2,
"permissions": [
"<all_urls>",
"tabs",
"storage"
],
"browser_action": {
"default_title": "rewrited.news",
"default_popup": "src/popup/popup.html",
"default_icon": {
"16": "assets/icon-16.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png",
"512": "assets/icon.png"
}
},
"background": {
"scripts": [
"src/background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"/src/content/script.js",
"/src/libs/dom-to-image.min.js",
"/src/libs/htmldiff.js"
]
}
],
"content_security_policy": "script-src 'self' ; object-src 'self'",
"web_accessible_resources": [
"/assets/*.svg",
"/assets/*.png",
"/src/*"
],
"browser_specific_settings": {
"gecko": {
"id": "extension@rewrited.news",
"strict_min_version": "83.0"
}
}
}