ちゅる楽天版

ちゅる楽天版

楽天の各ページにKeepaグラフやECサイトへのリンクボタンなどを表示する拡張機能です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ちゅる楽天版",
  "description": "楽天の各ページにKeepaグラフやECサイトへのリンクボタンなどを表示する拡張機能です。",
  "version": "1.9.9",
  "icons": {
    "16": "images/icon_32.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "browser_action": {
    "default_icon": "images/icon_32.png",
    "default_popup": "html/popup.html",
    "default_title": "ちゅる楽天版"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.churuweb.com/*",
        "https://*.rakuten.co.jp/*",
        "https://shopping.yahoo.co.jp/search*",
        "https://sellercentral-japan.amazon.com/*",
        "https://sellercentral.amazon.co.jp/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": true
  },
  "permissions": [
    "storage",
    "tabs",
    "*://*.rakuten.co.jp/*"
  ],
  "web_accessible_resources": [
    "images/*.gif",
    "images/copy.png",
    "images/scouter_on.jpg"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.churuweb.com/*"
    ]
  }
}