Inspect and view changes in RHS Plus 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": "RHS Plus",
"short_name": "RHS+",
"description": "Provide extra information and automatic actions for RHS pages",
"version": "0.9.2",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"96": "icons/icon96.png",
"128": "icons/icon128.png",
"256": "icons/icon256.png"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "icons/icon128.png",
"default_title": "RHS+"
},
"content_scripts": [
{
"js": [
"rhsplus.js"
],
"run_at": "document_end",
"matches": [
"*://*.co.jp/cws31/cws*"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"storage",
"notifications"
],
"web_accessible_resources": [
{
"resources": [
"*.png"
],
"matches": [
"https://*/*"
]
}
]
}