Clear Cache Shortcut
Quickly clear all your browser cache with a single click.
Что такое Clear Cache Shortcut?
Clear Cache Shortcut - это расширение Chrome, разработанное Paul Yuan, и его основная функция - "Quickly clear all your browser cache with a single click.".
Снимки экрана расширения
Скачать файл CRX расширения Clear Cache Shortcut
Скачайте файлы расширений 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"
]
} | |