SpeedText

SpeedText

Wtyczka Google

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SpeedText",
  "description": "Wtyczka Google",
  "version": "1.8",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "defult_icons": "icon16.png",
    "default_popup": "popup.html"
  },
  "options_page": "Opcje.html",
  "content_scripts": [
    {
      "matches": [
        "file://*",
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "contentScript.js"
      ]
    }
  ]
}