TooSlow? - Load Websites Faster

TooSlow? - Load Websites Faster

Browse websites faster and smoother with advance caching, pre-loading and no-refresh mechanism.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "TooSlow? - Load Websites Faster",
  "icons": {
    "128": "icon.png"
  },
  "version": "1.0",
  "description": "Browse websites faster and smoother with advance caching, pre-loading and no-refresh mechanism.",
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "service_worker": "dist/action/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "dist/action/utils.js",
        "dist/action/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_title": "TooSlow?",
    "default_icon": {
      "128": "icon.png"
    },
    "default_popup": "dist/action/index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}