サテライトオフィス・コンテキストガジェット&ウェブメニュー
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,
"version": "1.0.2",
"homepage_url": "http://www.sateraito.jp/",
"default_locale": "ja",
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"icons": {
"16": "images/sateraito16.png",
"32": "images/sateraito32.png",
"48": "images/sateraito48.png",
"128": "images/sateraito128.png"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"permissions": [
"declarativeNetRequest",
"storage"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"author": "Sateraito Office",
"options_page": "options.html",
"background": {
"service_worker": "background_script.js"
},
"content_scripts": [
{
"js": [
"jquery-2.2.4.min.js"
],
"css": [
"style.css"
],
"matches": [
"https://*.google.com/*",
"https://*/*"
],
"all_frames": true,
"run_at": "document_idle"
},
{
"js": [
"jquery-2.2.4.min.js",
"content_script.js"
],
"matches": [
"https://*.google.com/*",
"https://*/*"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": [
"images/*"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
]
}