Simple Auto Refresh
lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval
Что такое Simple Auto Refresh?
Simple Auto Refresh - это расширение Chrome, разработанное tobias.samesch, и его основная функция - "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval".
Снимки экрана расширения
Скачать файл CRX расширения Simple Auto Refresh
Скачайте файлы расширений Simple Auto Refresh в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
lean and simple chrome extension to refresh websites after timeout. you can manage all tabs refresh intervals inside option page. User interaction resets interval.
Основная информация о расширении
Название | Simple Auto Refresh |
ID | jghdcjbendekbeopdlofjcnogeeemjgd |
Официальный URL | https://chromewebstore.google.com/detail/simple-auto-refresh/jghdcjbendekbeopdlofjcnogeeemjgd |
Описание | lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval |
Размер файла | 10.36 KB |
Количество установок | 18 |
Текущая Версия | 1.0.3 |
Последнее Обновление | 2021-02-18 |
Дата публикации | 2021-01-09 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | tobias.samesch |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simple Auto Refresh", "version": "1.0.3", "description": "lean extension to refresh websites after timeout. manage tabs refresh intervals inside option page. User interaction resets interval", "permissions": [ "declarativeContent", "storage", "alarms", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "options_page": "options.html", "page_action": { "default_popup": "popup.html", "default_icon": { "24": "images\/ic_refresh_24px.png", "16": "images\/ic_refresh_24px.png", "32": "images\/ic_refresh_24px.png", "48": "images\/ic_refresh_24px.png", "128": "images\/ic_refresh_24px.png" } }, "icons": { "24": "images\/ic_refresh_24px.png", "16": "images\/ic_refresh_24px.png", "32": "images\/ic_refresh_24px.png", "48": "images\/ic_refresh_24px.png", "128": "images\/ic_refresh_24px.png" }, "manifest_version": 2 } |