Page Turner
Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.
Co je Page Turner?
Page Turner je rozšíření Chrome vyvinuté https://www.nathankowald.com, a jeho hlavní funkcí je „Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Page Turner
Stáhněte si soubory rozšíření Page Turner ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Page Turner |
ID | fpbddhncmmhkaofhcnkjgcdbgcmomebo |
Oficiální URL | https://chromewebstore.google.com/detail/page-turner/fpbddhncmmhkaofhcnkjgcdbgcmomebo |
Popis | Navigate paginated webpages using your keyboard's arrow keys. Perfect for search results, image galleries and more. |
Velikost souboru | 32.27 KB |
Počet instalací | 247 |
Aktuální Verze | 3.0.2 |
Poslední Aktualizace | 2019-05-08 |
Datum Vydání | 2019-05-07 |
Hodnocení | 4.14/5 Celkem 7 Hodnocení |
Vývojář | https://www.nathankowald.com |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/n8kowald/page-turner |
URL Stránky Nápovědy | https://github.com/n8kowald/page-turner/issues |
Podporované Jazyky | 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" ] } ] } |