ctrl-access
Navigate to links with a trigger key (by default the ctrl-key).
ctrl-accessとは何ですか?
ctrl-accessはFlorian Loitschによって開発されたChromeの拡張機能で、その主な機能は「Navigate to links with a trigger key (by default the ctrl-key).」です。
拡張機能のスクリーンショット
ctrl-access拡張機能のCRXファイルをダウンロード
ctrl-access拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This chrome extension allows to navigate to links with a trigger key (by default the ctrl-key). In many cases this removes the need for a mouse. This extension is a copy of Konqueror's access-key functionality.
拡張機能の基本情報
名前 | ctrl-access |
ID | glmoehiilkjpgcimmfodllkkhpeikomb |
公式URL | https://chromewebstore.google.com/detail/ctrl-access/glmoehiilkjpgcimmfodllkkhpeikomb |
説明 | Navigate to links with a trigger key (by default the ctrl-key). |
ファイルサイズ | 725 KB |
インストール数 | 68 |
現在のバージョン | 0.7.0 |
最終更新日 | 2020-08-16 |
公開日 | 2019-12-16 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | Florian Loitsch |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/floitsch/ctrl-access |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ctrl-access", "version": "0.7.0", "description": "Navigate to links with a trigger key (by default the ctrl-key).", "icons": { "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "tabs" ], "background": { "scripts": [ "bg.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery-1.7.2.min.js", "ctrl-access.js" ], "css": [ "ctrl-access.css" ], "run_at": "document_end", "all_frames": true } ], "options_page": "options.html" } |