Inspect and view changes in ColorizeU 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": "ColorizeU",
"author": "wushunchao@newsmth",
"description": "Colorize users with colorful tags, by wushunchao@newsmth",
"version": "0.2",
"manifest_version": 2,
"page_action": { // browser_action cannot gray icon for irrelative pages.
"default_icon": "logo.png"
},
"permissions": [
"*://*.newsmth.net/",
"tabs",
"webRequest", // needed by exp-phone
"webNavigation", // needed by nforum
//"downloads", // not needed by FileSaver.js // to export storage to json
"storage",
"unlimitedStorage" // to get rid of QUOTA_BYTES
],
"web_accessible_resources": ["options.html"],
"background":{
//"persistent": true, // Firefox-68esr warns if 'false'
"scripts": ["background.js"]
},
"options_ui": { // Firefox warns the obsolete form
"page": "options.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": ["*://*.newsmth.net/*"],
"all_frames": true,
"js": ["common.js", "site_pages.js", "contents.js"],
"run_at": "document_end"
}
]
}