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文件
下载Page Turner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } ] } |