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 |
Eメール | [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 } } |