NextPage - auto load the next page
Auto load the next page of your favourite search engine, forum or image site. Based on the AutoPagerize database.
NextPage - auto load the next pageとは何ですか?
NextPage - auto load the next pageはhttps://ciborski.comによって開発されたChromeの拡張機能で、その主な機能は「Auto load the next page of your favourite search engine, forum or image site. Based on the AutoPagerize database.」です。
拡張機能のスクリーンショット
NextPage - auto load the next page拡張機能のCRXファイルをダウンロード
NextPage - auto load the next page拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension will automatically load the next page when you reach the end of a page. Works for the most popular sites: - Google - Bing - and many other boards and forums You can write your own custom rules in the extension options (right click -> options). You can blacklist URLs to skip pagination for them (right click -> options). You can submit your rules to global database by opening a Pull Request with your rule - https://github.com/episage/next-page-chrome-extension/issues/new
拡張機能の基本情報
名前 | NextPage - auto load the next page |
ID | iokagnmembcjfocpbfmdojdghbfjpmkb |
公式URL | https://chromewebstore.google.com/detail/nextpage-auto-load-the-ne/iokagnmembcjfocpbfmdojdghbfjpmkb |
説明 | Auto load the next page of your favourite search engine, forum or image site. Based on the AutoPagerize database. |
ファイルサイズ | 467 KB |
インストール数 | 14,037 |
現在のバージョン | 2.0.0 |
最終更新日 | 2023-07-12 |
公開日 | 2020-06-04 |
評価 | 4.54/5 合計 24 レビュー |
開発者 | https://ciborski.com |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | https://docs.google.com/document/d/1GTrEd3GRZkbQHbtQICZ20lbyz58i7J8ft96hHIUP9fc/edit?usp=sharing |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "NextPage - auto load the next page", "short_name": "NextPage", "description": "Auto load the next page of your favourite search engine, forum or image site. Based on the AutoPagerize database.", "version": "2.0.0", "minimum_chrome_version": "88", "icons": { "16": "images\/manifest\/16.png", "32": "images\/manifest\/32.png", "48": "images\/manifest\/48.png", "128": "images\/manifest\/128.png" }, "options_page": "src\/options\/index.html", "background": { "service_worker": "src\/backgroundScript.js", "type": "module" }, "permissions": [ "storage" ], "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/iokagnmembcjfocpbfmdojdghbfjpmkb?authuser=0&hl=en", "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/contentScript.js" ] } ] } |