Unpaginate
Infinite scroll your favorite sites
Was ist Unpaginate?
Unpaginate ist eine Chrome-Erweiterung, die von Esquire Marketing entwickelt wurde, und ihr Hauptmerkmal ist "Infinite scroll your favorite sites".
Erweiterungsscreenshots
Unpaginate-Erweiterungs-CRX-Datei herunterladen
Laden Sie Unpaginate-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
Tired of always clicking through tons of pages on Google, Amazon, YouTube & Bing? Unpaginate allows you to infinitely scroll to the next page without having to click the next page and wait for it to load. Save hundreds of hours a year with Unpaginate!
Grundlegende Informationen zur Erweiterung
Name | Unpaginate |
ID | oamcmjemlelkciemicfpmojnnblgniab |
Offizielle URL | https://chromewebstore.google.com/detail/unpaginate/oamcmjemlelkciemicfpmojnnblgniab |
Beschreibung | Infinite scroll your favorite sites |
Dateigröße | 271 KB |
Installationsanzahl | 20 |
Aktuelle Version | 3.0 |
Letztes Update | 2019-01-02 |
Veröffentlichungsdatum | 2019-01-01 |
Entwickler | Esquire Marketing |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://sendia.co/privacy |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Unpaginate", "description": "Infinite scroll your favorite sites", "version": "3.0", "manifest_version": 2, "permissions": [ "storage" ], "icons": { "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "16": "icons\/icon_48.png", "32": "icons\/icon_128.png" }, "default_title": "Unpaginate" }, "content_scripts": [ { "js": [ "inject\/inject.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "options_ui": { "page": "options\/options.html", "open_in_tab": true, "chrome_style": true } } |