教えてURL

教えてURL

閲覧しているページで利用されているウェブサービスがひと目でわかるようになる拡張機能です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "教えてURL",
  "description": "__MSG_extDescription__",
  "version": "1.2.0",
  "default_locale": "ja",
  "homepage_url": "https://oshiete-url.jp/",
  "icons": {
    "16": "ico/oshiete_icon-16.png",
    "24": "ico/oshiete_icon-24.png",
    "32": "ico/oshiete_icon-32.png",
    "64": "ico/oshiete_icon-64.png",
    "128": "ico/oshiete_icon-128.png",
    "256": "ico/oshiete_icon-256.png"
  },
  "permissions": [
    "webRequest",
    "webNavigation",
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_icon": "ico/oshiete_icon-64.png",
    "default_popup": "html/popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "html/content.css"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "ico/oshiete_icon-16.png"
      ],
      "matches": [
        "https://oshiete-url.jp/*",
        "https://www.oshiete-url.jp/*"
      ]
    }
  ]
}