Deuce AutoRefresh
Reload the Deuce automatically
Was ist Deuce AutoRefresh?
Deuce AutoRefresh ist eine Chrome-Erweiterung, die von Pulseczar entwickelt wurde, und ihr Hauptmerkmal ist "Reload the Deuce automatically".
Erweiterungsscreenshots
Deuce AutoRefresh-Erweiterungs-CRX-Datei herunterladen
Laden Sie Deuce AutoRefresh-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | pejkhbellllimfkjjigljjbocnkmdemj |
Offizielle URL | https://chrome.google.com/webstore/detail/deuce-autorefresh/pejkhbellllimfkjjigljjbocnkmdemj |
Beschreibung | Reload the Deuce automatically |
Dateigröße | 39.42 KB |
Installationsanzahl | 56 |
Aktuelle Version | 1.32 |
Letztes Update | 2015-07-16 |
Veröffentlichungsdatum | 2015-07-15 |
Bewertung | 4.20/5 Insgesamt 5 Bewertungen |
Entwickler | Pulseczar |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |