Clear Cache Shortcut
Quickly clear all your browser cache with a single click.
什么是Clear Cache Shortcut?
Clear Cache Shortcut是由Paul Yuan开发的Chrome扩展程序,该扩展的主要功能是“Quickly clear all your browser cache with a single click.”。
扩展截图
下载Clear Cache Shortcut扩展crx文件
下载Clear Cache Shortcut扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is a simple extension that allows you to clear your cache with a single click of a button. You can either click the icon, or if you prefer, type in the browser address bar, "cache" => [hit the tab key] => "c" => [hit the enter key] to clear your cache. This extension uses the BrowsingData API which is supported by chrome versions 19+. 扩展基本信息
| 名称 | |
| ID | jnajhcakejgchhbjlchkfmdidgjefleg |
| 官方URL | https://chromewebstore.google.com/detail/clear-cache-shortcut/jnajhcakejgchhbjlchkfmdidgjefleg |
| 简介 | Quickly clear all your browser cache with a single click. |
| 文件大小 | 95.9 KB |
| 安装次数 | 144,994 |
| 当前版本 | 1.32 |
| 更新时间 | 2021-04-09 |
| 上架时间 | 2013-01-20 |
| 评分 | 4.39/5 共97次评分 |
| 开发者 | Paul Yuan |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://twitter.com/pyuan |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Clear Cache Shortcut",
"version": "1.32",
"icons": {
"16": "assets\/icon16.png",
"48": "assets\/icon48.png",
"128": "assets\/icon128.png"
},
"description": "Quickly clear all your browser cache with a single click.",
"content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
"browser_action": {
"default_icon": "assets\/icon_done.png",
"default_title": "Clear All Cache",
"default_popup": "info.html"
},
"omnibox": {
"keyword": "cache"
},
"background": {
"scripts": [
"assets\/jquery-1.9.0.min.js",
"assets\/functions.js",
"assets\/background.js"
]
},
"permissions": [
"browsingData"
]
} | |