Skater

Spotlight-like extension for Chrome bookmarks

Wat is Skater?

Skater is een Chrome-extensie ontwikkeld door ecalzo.developer, en de belangrijkste functie is "Spotlight-like extension for Chrome bookmarks".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Skater

Download Skater-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Skater Skater
ID goeeolknplhjegbfefjgeekeobpehekf
Officiële URL https://chromewebstore.google.com/detail/skater/goeeolknplhjegbfefjgeekeobpehekf
Beschrijving Spotlight-like extension for Chrome bookmarks
Bestandsgrootte 157 KB
Aantal Installaties 20
Huidige Versie 1.1.8
Laatst Bijgewerkt 2020-12-22
Publicatiedatum 2020-08-15
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar ecalzo.developer
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/Ecalzo/Skater/releases/
Help Pagina-URL https://github.com/Ecalzo/Skater/issues/
Ondersteunde Talen 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"
        }
    }
}