はちまバスター

はちまバスター

はちまやJINへのリンクを無効にします。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "author": "デベロッパー",
  "name": "はちまバスター",
  "short_name": "はちバス",
  "version": "0.23.0",
  "description": "はちまやJINへのリンクを無効にします。",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "contextMenus",
    "history",
    "offscreen"
  ],
  "background": {
    "service_worker": "/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "/content.css"
      ],
      "js": [
        "/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_icon": "icons/48.png",
    "default_title": "はちまバスター",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  }
}