Textune

Textune

Extension that makes online reading easy

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Textune",
  "version": "1.2.3",
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "scripting",
    "cookies",
    "management",
    "alarms"
  ],
  "description": "Extension that makes online reading easy",
  "icons": {
    "16": "images/icon_16x16.png",
    "32": "images/icon_32x32.png",
    "64": "images/icon_64x64.png",
    "128": "images/icon_128x128.png"
  },
  "action": {
    "default_icon": "images/icon.png",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://*.google.com/*",
        "https://groups.google.com/",
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle",
      "js": [
        "content.js",
        "js/readability.js"
      ]
    }
  ]
}