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 |
官方網址 | 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 } } |