earthquake Notify(緊急地震速報)

earthquake Notify(緊急地震速報)

日本で震度3以上の地震を検知したら通知します。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "earthquake Notify(緊急地震速報)",
  "description": "日本で震度3以上の地震を検知したら通知します。",
  "version": "1.1.1.0",
  "manifest_version": 2,
  "background": {
    "page": "html/background.html"
  },
  "options_page": "html/options/config.html",
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "permissions": [
    "notifications",
    "background",
    "http://commondatastorage.googleapis.com/earthquakenotify/api.json"
  ],
  "web_accessible_resources": [
    "image/tweet.png",
    "image/icon_48.png"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'"
}