AFAD タグチェックツール

AFAD タグチェックツール

AFADの計測タグおよび成果タグの設置状況のチェックを行います。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AFAD タグチェックツール",
  "description": "AFADの計測タグおよび成果タグの設置状況のチェックを行います。",
  "version": "1.0",
  "action": {
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    },
    "default_title": "AFAD タグチェックツール"
  },
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/jquery-3.7.1.min.js",
        "scripts/jquery-ui.min.js",
        "scripts/utilities.js",
        "scripts/content-script.js",
        "scripts/messenger.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "host_permissions": [
    "http://*/fpc/cookie_js.php*",
    "https://*/fpc/cookie_js.php*",
    "http://*/ac/action_js.php",
    "https://*/ac/action_js.php"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "app/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "webRequest"
  ]
}