Just Refresh
One-click toggle auto-refresh
Was ist Just Refresh?
Just Refresh ist eine Chrome-Erweiterung, die von claxtons4 entwickelt wurde, und ihr Hauptmerkmal ist "One-click toggle auto-refresh".
Erweiterungsscreenshots
Just Refresh-Erweiterungs-CRX-Datei herunterladen
Laden Sie Just Refresh-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
Just Refresh is an open source extension that automatically refreshes a page on a set interval with one click. Change the interval by right clicking the icon, and selecting "Options". You can auto refresh as many tabs are you like. If you like the extension, please leave a review and support me here: https://ko-fi.com/claxtastic New in v1.2: Apply settings to any URL from a given domain You can view the source of the extension here: https://github.com/Claxtastic/just-refresh And find my other projects here: https://github.com/Claxtastic The extension was designed overall to be minimal and straight to the point. It requires two permissions: 1. activeTab: To access the current tab and start the refresh loop. 2. storage: To locally store the current refresh interval.
Grundlegende Informationen zur Erweiterung
Name | Just Refresh |
ID | pgaimkehoiabhliejchbnamlboniofpd |
Offizielle URL | https://chromewebstore.google.com/detail/just-refresh/pgaimkehoiabhliejchbnamlboniofpd |
Beschreibung | One-click toggle auto-refresh |
Dateigröße | 44.83 KB |
Installationsanzahl | 1,000 |
Aktuelle Version | 1.2 |
Letztes Update | 2021-03-06 |
Veröffentlichungsdatum | 2019-07-23 |
Bewertung | 4.43/5 Insgesamt 7 Bewertungen |
Entwickler | claxtons4 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/Claxtastic/just-refresh |
Hilfeseite URL | https://ko-fi.com/claxtastic |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Just Refresh", "version": "1.2", "description": "One-click toggle auto-refresh", "options_page": "options.html", "permissions": [ "activeTab", "storage" ], "browser_action": [], "commands": { "toggle-refresh": { "suggested_key": { "default": "Alt+R", "mac": "Alt+R" }, "description": "Toggle refresh with keybind" } }, "background": { "scripts": [ "jquery.min.js", "background.js" ], "persistent": false }, "icons": { "128": "images\/just_refresh128.png" }, "manifest_version": 2 } |