ふくりの優待サーチ

ふくりの優待サーチ

日々の"検索"で優待が見つかる! 「ふくりの優待サーチ」は、福利厚生倶楽部会員向けの公式ブラウザ拡張機能です。福利厚生倶楽部のご利用が便利になる、3つの機能があります。 * 優待内容を検索ポータルサイトに表示…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ふくりの優待サーチ",
  "description": "",
  "version": "1.1.1",
  "manifest_version": 2,
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "cookies",
    "*://*.fukuri.jp/",
    "https://*.algolia.net/"
  ],
  "web_accessible_resources": [
    "*.svg",
    "*.png",
    "*.json"
  ],
  "browser_action": {
    "default_title": "ふくりの優待サーチ",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/search*",
        "https://www.google.co.jp/search*",
        "https://search.yahoo.co.jp/*"
      ],
      "exclude_matches": [
        "https://www.fukuri.jp/*"
      ],
      "css": [
        "content/icon/content.css"
      ],
      "js": [
        "content/icon/content.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "exclude_matches": [
        "https://www.fukuri.jp/*"
      ],
      "css": [
        "content/search/content.css"
      ],
      "js": [
        "content/search/content.js"
      ]
    }
  ]
}