CloudFlare Purge Plugin
This extension can purge the CloudFlare cache for the current page of your CloudFlare enabled website
CloudFlare Purge Plugin là gì?
CloudFlare Purge Plugin là một tiện ích mở rộng Chrome được phát triển bởi https://www.cf-purge.com, và tính năng chính của nó là "This extension can purge the CloudFlare cache for the current page of your CloudFlare enabled website".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng CloudFlare Purge Plugin
Tải xuống các tệp mở rộng CloudFlare Purge Plugin dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
The Cloudflare purge plugin uses the Cloudflare API to purge any page of a website that serves its contents through the Cloudflare CDN. After you set your CF e-mail and API key in the options, you can purge the cache of any page of your CF enabled website. After version 1.3, you can purge the entire cache for the domain of your current tab. Updates: ========================================= v 1.8.0: Migrated the extension to use Chrome Manifest V3 for improved security and better compatibility with Google Chrome. Added a list of all user owned cloudflare zones for the current API key on the options page. v 1.7.0: Added the ability to have multiple Cloudflare tokens and select between different profiles. Fixed a bug with the domain parsing logic. Special thanks to the active members of the community for their great feedback. v1.6.2: Refactored the way the extension makes asynchronous requests to the Cloudflare API to follow the Chrome safety requirements and use a background page. v1.6.1: Added support for Cloudflare API Tokens. Please check https://www.cf-purge.com/token-setup.html to find out more. v1.6.0: Rewrote the whole extension using the latest ECMA script 7 APIs. The extension executes code in a non-blocking manner. Refreshed the UI with a new design. The next version (1.6.1) will support the long awaited CloudFlare restricted API keys. Stay tuned. v1.5.1: Added a new feature for managing CloudFlare DEV mode for your domains v1.5.0: Added support for Mozilla Firefox v 1.4.3: Masked the API key input. Fixed issues with the parsing of second level domains in the URL. v 1.4.2: Added an option to show/hide the "Purge Entire Cache" button v 1.4.1: Fixed a critical issue when purging domains without a leading sub-domain v 1.4.0: Changed the design to reflect the new CloudFlare design guidelines. Refactored the extension code and optimized the API calls. v 1.3.6: Included the ability to purge multiple URLs at the same time from the options screen. v 1.3.5: Added a way to check the error message that gets returned from Cloudflare by clicking on the "Purge failed" red text v 1.3.4: Fixed an issue when trying to purge apex domains v 1.3.3: Changed the logic for the "Info" button to show the info even when some parts of it are missing v 1.3.2: Added a new "Info" button that shows the Cloudflare node, Ray ID and the current Cache-Control header values. v 1.3.1: Pushed a fix for a bug related to anchor links with spaces in the URL. Thanks to "solarroger". v 1.3: Added a new option to purge the whole cache for the domain of the current tab v 1.2.2: A small bug fix for the refresh functionality caused by auto updates. v 1.2.1: Added a new refresh timeout option that delays the page refresh. v 1.1: Includes a refresh function that refreshes the page on a successful purge v 1.0: The extension includes all the basic functionality that you need to purge the URL in your active tab.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | CloudFlare Purge Plugin |
ID | nbpecchpcfacahhekolpaofpmogkmmok |
URL Chính Thức | https://chromewebstore.google.com/detail/cloudflare-purge-plugin/nbpecchpcfacahhekolpaofpmogkmmok |
Mô tả | This extension can purge the CloudFlare cache for the current page of your CloudFlare enabled website |
Kích Thước Tệp | 89.02 KB |
Số Lần Cài Đặt | 11,844 |
Phiên Bản Hiện Tại | 1.8.0 |
Cập Nhật Lần Cuối | 2023-09-04 |
Ngày Phát Hành | 2020-02-06 |
Đánh Giá | 4.67/5 Tổng số 27 Đánh Giá |
Nhà Phát Triển | https://www.cf-purge.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.cf-purge.com |
URL Trang Chính Sách Bảo Mật | http://www.cf-purge.com/privacy-policy.html |
Ngôn Ngữ Được Hỗ Trợ | en |
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:\/\/*\/" ] } |