Timer Refresh
Timer refresh the specified page or only refresh the inactive TAB page.
Что такое Timer Refresh?
Timer Refresh - это расширение Chrome, разработанное thomashg0712, и его основная функция - "Timer refresh the specified page or only refresh the inactive TAB page.".
Снимки экрана расширения
Скачать файл CRX расширения Timer Refresh
Скачайте файлы расширений Timer Refresh в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
For some users with special needs, keeping the page active maybe a good help. Основная информация о расширении
| Название | |
| ID | fembhgfanglpnpkjcgdacodmefdmfpep |
| Официальный URL | https://chrome.google.com/webstore/detail/fembhgfanglpnpkjcgdacodmefdmfpep |
| Описание | Timer refresh the specified page or only refresh the inactive TAB page. |
| Размер файла | 27.85 KB |
| Количество установок | 42 |
| Текущая Версия | 0.0.1 |
| Последнее Обновление | 2020-01-19 |
| Дата публикации | 2020-01-19 |
| Разработчик | thomashg0712 |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"background": {
"page": "background.html",
"script": "background.js"
},
"content_scripts": [
{
"all_frames": false,
"js": [
"script.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start"
}
],
"default_locale": "en",
"description": "__MSG_extDescription__",
"icons": {
"128": "img\/on128.png"
},
"manifest_version": 2,
"name": "__MSG_extName__",
"page_action": {
"default_icon": "img\/on128.png",
"default_popup": "popup.html",
"default_title": "__MSG_extName__"
},
"permissions": [
"tabs",
"browsingData",
"webRequest",
"webNavigation",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"version": "0.0.1"
} | |