Skater

Spotlight-like extension for Chrome bookmarks

Skaterとは何ですか?

Skaterはecalzo.developerによって開発されたChromeの拡張機能で、その主な機能は「Spotlight-like extension for Chrome bookmarks」です。

拡張機能のスクリーンショット

screenshot

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 Skater
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
Eメール [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"
        }
    }
}