Clear Cache for Current Tab
Clears the browser cache for the current tab only.
Clear Cache for Current Tabとは何ですか?
Clear Cache for Current TabはNicolas Barraudによって開発されたChromeの拡張機能で、その主な機能は「Clears the browser cache for the current tab only.」です。
拡張機能のスクリーンショット
Clear Cache for Current Tab拡張機能のCRXファイルをダウンロード
Clear Cache for Current Tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Unlike most cache-cleaning extensions, this one targets the current tab only. This is particularly useful when developing and testing a web app. With this extension, clearing the browser cache no longer affects your experience on other websites. To use it, click the extension icon or assign a keyboard shortcut. This is the full list of items that the extension clears. Chromium does not allow clearing anything more than that when targeting a specific tab: - Cache Storage - Cookies - File Systems - IndexedDB - Local Storage - Plugin Data - Service Workers - WebSQL In the future, I will add an option to select which of the above categories to clear.
拡張機能の基本情報
名前 | Clear Cache for Current Tab |
ID | lfkgcfakbpblpflbjanpoaipofoodnen |
公式URL | https://chromewebstore.google.com/detail/clear-cache-for-current-t/lfkgcfakbpblpflbjanpoaipofoodnen |
説明 | Clears the browser cache for the current tab only. |
ファイルサイズ | 17.06 KB |
インストール数 | 787 |
現在のバージョン | 1.0.0 |
最終更新日 | 2022-12-25 |
公開日 | 2022-11-19 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | Nicolas Barraud |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Clear Cache for Current Tab", "version": "1.0.0", "description": "Clears the browser cache for the current tab only.", "author": "Nicolas Barraud", "permissions": [ "browsingData", "activeTab" ], "commands": { "clear-cache": { "suggested_key": { "default": "Ctrl+R", "mac": "Command+R" }, "description": "Clear cache for current tab" } }, "action": { "default_title": "Clear cache for current tab", "default_icon": { "16": "icon16.png", "24": "icon24.png", "32": "icon32.png", "64": "icon64.png", "128": "icon128.png" } }, "background": { "service_worker": "background.js" } } |