Unpaginate
Infinite scroll your favorite sites
Qu'est-ce que Unpaginate ?
Unpaginate est une extension Chrome développée par Esquire Marketing, et sa fonction principale est "Infinite scroll your favorite sites".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Unpaginate
Téléchargez les fichiers d'extension Unpaginate au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Unpaginate |
ID | oamcmjemlelkciemicfpmojnnblgniab |
URL Officiel | https://chromewebstore.google.com/detail/unpaginate/oamcmjemlelkciemicfpmojnnblgniab |
Description | Infinite scroll your favorite sites |
Taille du Fichier | 271 KB |
Nombre d'Installations | 20 |
Version Actuelle | 3.0 |
Dernière Mise à Jour | 2019-01-02 |
Date de Publication | 2019-01-01 |
Développeur | Esquire Marketing |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://sendia.co/privacy |
Langues Prises en Charge | 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 } } |