Inspect and view changes in 日本語的検索結果画面瞬間移動拡張 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": "日本語的検索結果画面瞬間移動拡張",
"version": "1.0.0",
"description": "Google検索結果が中国語の場合、日本語の結果ページへリダイレクトします",
"host_permissions": [
"*://www.google.com/search*",
"*://www.google.co.jp/search*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://www.google.com/search*",
"*://www.google.co.jp/search*"
],
"js": [
"content_script.js"
]
}
],
"icons": {
"16": "icon_16.png",
"48": "icon_48.png",
"128": "icon_128.png"
}
}