Arrow Browse
Allows use of arrow keys to move to next and previous pages.
什麼是Arrow Browse?
Arrow Browse是由benjamin12g開發的Chrome擴展程式,該擴展的主要功能是“Allows use of arrow keys to move to next and previous pages.”。
擴展截圖
下載Arrow Browse擴展crx文件
下載Arrow Browse擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Searches pages for links or buttons that contain some reference to "next" or "previous" and trigger those links/buttons on the pressing of the left or right arrow keys on the keyboard (left for previous, right for next). Its great for reading through tutorials, web comics, blogs, video blogs or really any content that comes in a linear series of pages.
擴展基本資訊
名稱 | |
ID | mmnojcmflanomipfjmbmnafphfcigage |
官方網址 | https://chrome.google.com/webstore/detail/arrow-browse/mmnojcmflanomipfjmbmnafphfcigage |
簡介 | Allows use of arrow keys to move to next and previous pages. |
檔案大小 | 11.57 KB |
安裝次數 | 25 |
目前版本 | 1.1.1 |
更新時間 | 2015-02-12 |
上架時間 | 2015-02-12 |
評分 | 5.00/5 共 3 次評分 |
開發者 | benjamin12g |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Arrow Browse", "options_ui": { "page": "options.html", "chrome_style": true }, "description": "Allows use of arrow keys to move to next and previous pages.", "version": "1.1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon16.png", "default_title": "Arrow Browse", "default_popup": "extension.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "activeTab", "storage" ] } |