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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Auto load the next page of your favourite search engine, forum or image site. Based on the AutoPagerize database."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में NextPage - auto load the next page एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" ] } ] } |