Unpaginate
Infinite scroll your favorite sites
What is Unpaginate?
Unpaginate is a Chrome extension developed by Esquire Marketing, and its main feature is "Infinite scroll your favorite sites".
Extension Screenshots
Download Unpaginate Extension CRX File
Download Unpaginate extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Unpaginate |
ID | oamcmjemlelkciemicfpmojnnblgniab |
Official URL | https://chromewebstore.google.com/detail/unpaginate/oamcmjemlelkciemicfpmojnnblgniab |
Description | Infinite scroll your favorite sites |
File Size | 271 KB |
Installation Count | 20 |
Current Version | 3.0 |
Last Updated | 2019-01-02 |
Publish Date | 2019-01-01 |
Developer | Esquire Marketing |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://sendia.co/privacy |
Supported Languages | 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 } } |