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 là gì?
NextPage - auto load the next page là một tiện ích mở rộng Chrome được phát triển bởi https://ciborski.com, và tính năng chính của nó là "Auto load the next page of your favourite search engine, forum or image site. Based on the AutoPagerize database.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng NextPage - auto load the next page
Tải xuống các tệp mở rộng NextPage - auto load the next page dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | NextPage - auto load the next page |
ID | iokagnmembcjfocpbfmdojdghbfjpmkb |
URL Chính Thức | https://chromewebstore.google.com/detail/nextpage-auto-load-the-ne/iokagnmembcjfocpbfmdojdghbfjpmkb |
Mô tả | Auto load the next page of your favourite search engine, forum or image site. Based on the AutoPagerize database. |
Kích Thước Tệp | 467 KB |
Số Lần Cài Đặt | 14,037 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2023-07-12 |
Ngày Phát Hành | 2020-06-04 |
Đánh Giá | 4.54/5 Tổng số 24 Đánh Giá |
Nhà Phát Triển | https://ciborski.com |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://docs.google.com/document/d/1GTrEd3GRZkbQHbtQICZ20lbyz58i7J8ft96hHIUP9fc/edit?usp=sharing |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |