天気予報

天気予報

【決定版】定番サイト「天気予報コム」をウインドウの片隅に。バッチリな天気予報でハッピーな一日を!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "天気予報",
  "version": "1.1",
  "description": "【決定版】定番サイト「天気予報コム」をウインドウの片隅に。バッチリな天気予報でハッピーな一日を!",
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "homepage_url": "http://www.tenki-yoho.com/",
  "browser_action": {
    "default_icon": {
      "19": "19.png",
      "38": "38.png"
    },
    "default_popup": "popup.html",
    "default_title": "天気予報"
  },
  "background": {
    "scripts": [
      "jquery-2.1.3.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.tenki-yoho.com/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "permissions": [
    "alarms",
    "http://news.cube-soft.jp/*"
  ],
  "web_accessible_resources": [
    "background.js"
  ],
  "options_page": "option.html"
}