Skater
Spotlight-like extension for Chrome bookmarks
什么是Skater?
Skater是由ecalzo.developer开发的Chrome扩展程序,该扩展的主要功能是“Spotlight-like extension for Chrome bookmarks”。
扩展截图
下载Skater扩展crx文件
下载Skater扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Written to help developers who love keyboard-centric workflows, Skater emulates MacOS Spotlight, but for Chrome bookmarks.
Instantly search your bookmarks with Ctrl + Shift + Space or Cmd + Shift + Space.
---
Skater is open source and always under construction. Checkout the GitHub page for feature requests. 扩展基本信息
| 名称 | |
| ID | goeeolknplhjegbfefjgeekeobpehekf |
| 官方URL | https://chromewebstore.google.com/detail/skater/goeeolknplhjegbfefjgeekeobpehekf |
| 简介 | Spotlight-like extension for Chrome bookmarks |
| 文件大小 | 157 KB |
| 安装次数 | 20 |
| 当前版本 | 1.1.8 |
| 更新时间 | 2020-12-22 |
| 上架时间 | 2020-08-15 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | ecalzo.developer |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/Ecalzo/Skater/releases/ |
| 帮助页面URL | https://github.com/Ecalzo/Skater/issues/ |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Skater",
"description": "Spotlight-like extension for Chrome bookmarks",
"version": "1.1.8",
"icons": {
"16": "images\/icon16.png",
"24": "images\/icon24.png",
"32": "images\/icon32.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"browser_action": {
"default_popup": "static\/popup.html",
"default_icon": "images\/icon128.png"
},
"background": {
"scripts": [
"static\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"static\/bundle.js"
]
}
],
"permissions": [
"bookmarks",
"tabs"
],
"commands": {
"launch": {
"suggested_key": {
"default": "Ctrl+Shift+Space",
"mac": "Command+Shift+Space"
},
"description": "launch Skater"
}
}
} | |