Cachebuster
The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.
Cachebusterとは何ですか?
CachebusterはYasa Akbulutによって開発されたChromeの拡張機能で、その主な機能は「The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.」です。
拡張機能のスクリーンショット
Cachebuster拡張機能のCRXファイルをダウンロード
Cachebuster拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Cachebuster adds a query parameter to all HTTP requests made by your browser to bypass load balancer/proxy caches. For example, an HTTP request to URL http://yasa.gs/ will actually be made to the URL http://yasa.gs/?cachebusterTimestamp=1383291810660. Especially useful in scenarios where manual QA for web apps is performed in a corporate environment, which usually feature heavy caching via load balancers or proxies. Without this extension, testers might not see the latest changes.
拡張機能の基本情報
名前 | Cachebuster |
ID | lmdhgpbbmafnmlkpeaafegpohagkoikd |
公式URL | https://chromewebstore.google.com/detail/cachebuster/lmdhgpbbmafnmlkpeaafegpohagkoikd |
説明 | The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes. |
ファイルサイズ | 71.85 KB |
インストール数 | 831 |
現在のバージョン | 0.0.5 |
最終更新日 | 2022-06-24 |
公開日 | 2013-12-30 |
評価 | 5.00/5 合計 6 レビュー |
開発者 | Yasa Akbulut |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://yasakbulut.github.io/cachebuster/ |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Cachebuster", "version": "0.0.5", "manifest_version": 2, "description": "The awesome cache-busting extension. Perfect for bypassing proxy and load balancer caches for development and testing purposes.", "homepage_url": "http:\/\/yasakbulut.github.io\/cachebuster", "icons": { "16": "icons\/Network16.png", "48": "icons\/Network48.png", "128": "icons\/Network128.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "permissions": [ "http:\/\/*\/*", "webRequest", "webRequestBlocking" ], "options_page": "src\/options_custom\/index.html", "browser_action": { "default_icon": { "19": "icons\/Network19.png", "38": "icons\/Network38.png" }, "default_title": "Cache Buster" } } |