インカムツールバー

インカムツールバー

ポイントインカムでのポイントが貯めやすくなるChromeツールバーです。

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": "ポイントインカムでのポイントが貯めやすくなるChromeツールバーです。",
  "version": "1.1.0",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery-3.2.1.min.js",
        "js/js.cookie.min.js",
        "js/fun/adpage.js",
        "js/content_script.js"
      ],
      "css": [
        "css/style.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://pointi.jp/*"
      ]
    }
  ],
  "permissions": [
    "http://*/*",
    "https://*/*"
  ]
}