Page Turner
Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.
What is Page Turner?
Page Turner is a Chrome extension developed by https://www.nathankowald.com, and its main feature is "Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.".
Extension Screenshots
Download Page Turner Extension CRX File
Download Page Turner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | fpbddhncmmhkaofhcnkjgcdbgcmomebo |
Official URL | https://chromewebstore.google.com/detail/page-turner/fpbddhncmmhkaofhcnkjgcdbgcmomebo |
Description | Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more. |
File Size | 32.27 KB |
Installation Count | 247 |
Current Version | 3.0.2 |
Last Updated | 2019-05-08 |
Publish Date | 2019-05-07 |
Rating | 4.14/5 Total 7 Ratings |
Developer | https://www.nathankowald.com |
Payment Type | free |
Extension Website | https://github.com/n8kowald/page-turner |
Help Page URL | https://github.com/n8kowald/page-turner/issues |
Supported Languages | 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" ] } ] } |