Unpaginate
Infinite scroll your favorite sites
什么是Unpaginate?
Unpaginate是由Esquire Marketing开发的Chrome扩展程序,该扩展的主要功能是“Infinite scroll your favorite sites”。
扩展截图
下载Unpaginate扩展crx文件
下载Unpaginate扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | Unpaginate |
ID | oamcmjemlelkciemicfpmojnnblgniab |
官方URL | https://chromewebstore.google.com/detail/unpaginate/oamcmjemlelkciemicfpmojnnblgniab |
简介 | Infinite scroll your favorite sites |
文件大小 | 271 KB |
安装次数 | 20 |
当前版本 | 3.0 |
更新时间 | 2019-01-02 |
上架时间 | 2019-01-01 |
开发者 | Esquire Marketing |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://sendia.co/privacy |
支持的语言 | 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 } } |