Skater

Spotlight-like extension for Chrome bookmarks

What is Skater?

Skater is a Chrome extension developed by ecalzo.developer, and its main feature is "Spotlight-like extension for Chrome bookmarks".

Extension Screenshots

screenshot

Download Skater Extension CRX File

Download Skater extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Skater Skater
ID goeeolknplhjegbfefjgeekeobpehekf
Official URL https://chromewebstore.google.com/detail/skater/goeeolknplhjegbfefjgeekeobpehekf
Description Spotlight-like extension for Chrome bookmarks
File Size 157 KB
Installation Count 20
Current Version 1.1.8
Last Updated 2020-12-22
Publish Date 2020-08-15
Rating 5.00/5 Total 4 Ratings
Developer ecalzo.developer
Email [email protected]
Payment Type free
Extension Website https://github.com/Ecalzo/Skater/releases/
Help Page URL https://github.com/Ecalzo/Skater/issues/
Supported Languages 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"
        }
    }
}