Sakura Internet Badge

Sakura Internet Badge

表示されたページがさくらインターネットから提供されているかを確認します。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Sakura Internet Badge",
  "description": "表示されたページがさくらインターネットから提供されているかを確認します。",
  "version": "1.1.2",
  "manifest_version": 2,
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "indicator.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_title": "Sakura Internet Badge",
    "default_icon": {
      "19": "image/icon-disable.png",
      "38": "image/icon-disable.png"
    }
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    "options.js",
    "indicator.js"
  ],
  "icons": {
    "48": "image/icon.png",
    "128": "image/icon.png"
  }
}