Spotlink - Mouseless browsing
Navigate the internet without using your mouse.
什么是Spotlink - Mouseless browsing?
Spotlink - Mouseless browsing是由Reindert Vetter开发的Chrome扩展程序,该扩展的主要功能是“Navigate the internet without using your mouse.”。
扩展截图
下载Spotlink - Mouseless browsing扩展crx文件
下载Spotlink - Mouseless browsing扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Activate spotlink and search on the page and navigate. Spotlink will remember your choice. This allows you to navigate to frequently used links even faster.
For mac: Use the left command key twice to activate spotlink.
For windows: Use the left window key twice to activate spotlink.
You can assign a second key yourself in the options.
https://github.com/reindert-vetter/spotlink/ 扩展基本信息
| 名称 | |
| ID | ccpeekpolhnigeclfncaglcennmfcfjg |
| 官方URL | https://chromewebstore.google.com/detail/spotlink-mouseless-browsi/ccpeekpolhnigeclfncaglcennmfcfjg |
| 简介 | Navigate the internet without using your mouse. |
| 文件大小 | 134 KB |
| 安装次数 | 39 |
| 当前版本 | 3.8.7 |
| 更新时间 | 2023-08-24 |
| 上架时间 | 2018-06-04 |
| 评分 | 4.67/5 共6次评分 |
| 开发者 | Reindert Vetter |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Spotlink - Mouseless browsing",
"version": "3.8.7",
"description": "Navigate the internet without using your mouse.",
"manifest_version": 2,
"icons": {
"16": "media\/sl_icon\/res\/mipmap-mdpi\/sl_icon.png",
"48": "media\/sl_icon\/res\/mipmap-mdpi\/sl_icon.png",
"128": "media\/sl_icon\/res\/mipmap-xxxhdpi\/sl_icon.png"
},
"browser_action": {
"default_icon": "media\/sl_icon\/res\/mipmap-mdpi\/sl_icon.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"style.css"
],
"js": [
"script.js"
],
"all_frames": true
}
],
"permissions": [
"storage",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"offline_enabled": true
} | |