Auto refresh
Automatically refresh the specified page, or only refresh the inactive TAB page.
Что такое Auto refresh?
Auto refresh - это расширение Chrome, разработанное idof, и его основная функция - "Automatically refresh the specified page, or only refresh the inactive TAB page.".
Снимки экрана расширения
Скачать файл CRX расширения Auto refresh
Скачайте файлы расширений Auto refresh в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Automatically refresh the specified page, or only refresh the inactive TAB page. Основная информация о расширении
| Название | |
| ID | mljjfcmhgefdfgeomcaocgijloggnnjk |
| Официальный URL | https://chrome.google.com/webstore/detail/auto-refresh/mljjfcmhgefdfgeomcaocgijloggnnjk |
| Описание | Automatically refresh the specified page, or only refresh the inactive TAB page. |
| Размер файла | 74.91 KB |
| Количество установок | 10,000 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2014-11-15 |
| Дата публикации | 2014-11-15 |
| Рейтинг | 4.27/5 Всего 15 оценок |
| Разработчик | idof |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"background": {
"page": "background.html",
"script": "background.js"
},
"content_scripts": [
{
"all_frames": false,
"js": [
"script.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
"default_locale": "en",
"description": "__MSG_extDescription__",
"icons": {
"128": "img\/on128.png",
"64": "img\/on64.png"
},
"manifest_version": 2,
"name": "__MSG_extName__",
"page_action": {
"default_icon": "img\/off.png",
"default_popup": "popup.html",
"default_title": "__MSG_extName__"
},
"permissions": [
"tabs",
"browsingData",
"webRequest",
"webNavigation",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "1.0"
} | |