Examine source code of お天気予報

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",
  "name": "お天気予報",
  "version": "2.9.0.1",
  "description": "気象庁の天気情報をもとに各地の天気予報を表示します。",
  "icons": {
    "16": "icon/icon16.png",
    "48": "icon/icon48.png",
    "128": "icon/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js",
      "iconAnimator.js"
    ]
  },
  "options_page": "option.html",
  "browser_action": {
    "default_icon": "icon/default.png",
    "default_title": "お天気予報",
    "default_popup": "popup.html"
  },
  "permissions": [
    "https://ote.space/",
    "storage"
  ],
  "web_accessible_resources": [
    "background.js",
    "option.html"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}