Inspect and view changes in Redactle++ 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": "Redactle++",
"description": "Adds additional features to the online game Redactle.",
"version": "0.2",
"icons": {
"32": "icon32.png",
"64": "icon64.png"
},
"content_scripts": [
{
"matches": [
"https://www.redactle.com/*",
"http://www.redactle.com/*"
],
"js": [
"content.js"
],
"css": [
"style.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"script.js",
"style.css"
],
"matches": [
"https://www.redactle.com/*",
"http://www.redactle.com/*"
]
}
]
}