Page Turner
Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.
Page Turner란 무엇입니까?
Page Turner은(는) https://www.nathankowald.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more."입니다.
확장 프로그램 스크린샷
Page Turner 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Page Turner detects back and next links in websites. It allows you to 'turn the page' using your keyboard's left and right arrow keys. Page Turner also prerenders next pages for fast page loads.
확장 프로그램 기본 정보
이름 | Page Turner |
ID | fpbddhncmmhkaofhcnkjgcdbgcmomebo |
공식 URL | https://chromewebstore.google.com/detail/page-turner/fpbddhncmmhkaofhcnkjgcdbgcmomebo |
설명 | Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more. |
파일 크기 | 32.27 KB |
설치 횟수 | 247 |
현재 버전 | 3.0.2 |
최근 업데이트 | 2019-05-08 |
출시 날짜 | 2019-05-07 |
평점 | 4.14/5 총 7 개의 평점 |
개발자 | https://www.nathankowald.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/n8kowald/page-turner |
도움말 페이지 URL | https://github.com/n8kowald/page-turner/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Page Turner", "version": "3.0.2", "manifest_version": 2, "description": "Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.", "browser_action": { "default_icon": "icons\/inactive.png", "default_popup": "popup\/popup.html" }, "permissions": [ "tabs", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "icons\/arrow-next.png", "icons\/arrow-back.png" ], "icons": { "16": "icons\/inactive.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "page-turner.js" ], "css": [ "styles.css" ] } ] } |