CloudFlare Purge Plugin

CloudFlare Purge Plugin

This extension can purge the CloudFlare cache for the current page of your CloudFlare enabled website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CloudFlare Purge Plugin",
  "short_name": "CloudFlare Purge",
  "description": "This extension can purge the CloudFlare cache for the current page of your CloudFlare enabled website",
  "version": "1.8.0",
  "options_page": "options.html",
  "icons": {
    "19": "icon.png",
    "48": "icon48.png"
  },
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ]
}