Deuce AutoRefresh
Reload the Deuce automatically
Что такое Deuce AutoRefresh?
Deuce AutoRefresh - это расширение Chrome, разработанное Pulseczar, и его основная функция - "Reload the Deuce automatically".
Снимки экрана расширения
Скачать файл CRX расширения Deuce AutoRefresh
Скачайте файлы расширений Deuce AutoRefresh в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Automatically refreshes The Deuce (icb2.com) "Show new replies to your posts" page and "main board" to a specified interval. Default refresh interval is 30 seconds but you have the option to set your own interval. Look on the options page for a set of predefined times or customize your own. v1.32 Changes ======== - Updated obsolete functions
Основная информация о расширении
Название | |
ID | pejkhbellllimfkjjigljjbocnkmdemj |
Официальный URL | https://chrome.google.com/webstore/detail/deuce-autorefresh/pejkhbellllimfkjjigljjbocnkmdemj |
Описание | Reload the Deuce automatically |
Размер файла | 39.42 KB |
Количество установок | 56 |
Текущая Версия | 1.32 |
Последнее Обновление | 2015-07-16 |
Дата публикации | 2015-07-15 |
Рейтинг | 4.20/5 Всего 5 оценок |
Разработчик | Pulseczar |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Deuce AutoRefresh", "version": "1.32", "manifest_version": 2, "description": "Reload the Deuce automatically", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "options_page": "options.html", "background": { "scripts": [ "bg.js" ], "persistent": false }, "page_action": { "default_icon": "icon16.png", "default_popup": "popup.html" }, "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/www.icb2.com\/boards\/index.php?action=unreadreplies", "http:\/\/www.icb2.com\/boards\/index.php?board=1.0", "http:\/\/www.icb2.com\/boards\/index.php?action=unread" ], "js": [ "script.js" ] } ] } |