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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } ] } |