Skater

Spotlight-like extension for Chrome bookmarks

Skater là gì?

Skater là một tiện ích mở rộng Chrome được phát triển bởi ecalzo.developer, và tính năng chính của nó là "Spotlight-like extension for Chrome bookmarks".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Skater

Tải xuống các tệp mở rộng Skater dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Skater Skater
ID goeeolknplhjegbfefjgeekeobpehekf
URL Chính Thức https://chromewebstore.google.com/detail/skater/goeeolknplhjegbfefjgeekeobpehekf
Mô tả Spotlight-like extension for Chrome bookmarks
Kích Thước Tệp 157 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 1.1.8
Cập Nhật Lần Cuối 2020-12-22
Ngày Phát Hành 2020-08-15
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển ecalzo.developer
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Ecalzo/Skater/releases/
URL Trang Trợ Giúp https://github.com/Ecalzo/Skater/issues/
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}