Page Turner
Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.
Wat is Page Turner?
Page Turner is een Chrome-extensie ontwikkeld door https://www.nathankowald.com, en de belangrijkste functie is "Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.".
Extensie Screenshots
Download het CRX-bestand van de extensie Page Turner
Download Page Turner-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Page Turner |
ID | fpbddhncmmhkaofhcnkjgcdbgcmomebo |
Officiële URL | https://chromewebstore.google.com/detail/page-turner/fpbddhncmmhkaofhcnkjgcdbgcmomebo |
Beschrijving | Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more. |
Bestandsgrootte | 32.27 KB |
Aantal Installaties | 247 |
Huidige Versie | 3.0.2 |
Laatst Bijgewerkt | 2019-05-08 |
Publicatiedatum | 2019-05-07 |
Beoordeling | 4.14/5 Totaal 7 Beoordelingen |
Ontwikkelaar | https://www.nathankowald.com |
Betalingswijze | free |
Extensiewebsite | https://github.com/n8kowald/page-turner |
Help Pagina-URL | https://github.com/n8kowald/page-turner/issues |
Ondersteunde Talen | 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" ] } ] } |