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.4",
"description": "SUUMO等の賃貸物件検索サイトで指定した住所リスト内の物件かチェックできる拡張ツールです",
"permissions": [
"storage"
],
"host_permissions": [
"https://suumo.jp/*",
"https://*.suumo.jp/*",
"https://www.homes.co.jp/chintai/*"
],
"options_page": "popup/build/index.html",
"action": {
"default_popup": "popup/build/index.html"
},
"content_scripts": [
{
"matches": [
"https://suumo.jp/*",
"https://*.suumo.jp/*"
],
"run_at": "document_end",
"all_frames": true,
"js": [
"suumo.js"
]
},
{
"matches": [
"https://www.homes.co.jp/*"
],
"run_at": "document_end",
"all_frames": true,
"js": [
"homes.js"
]
}
]
}