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.
擴展基本資訊
名稱 | Skater |
ID | goeeolknplhjegbfefjgeekeobpehekf |
官方網址 | 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" } } } |