Snippets

Import and execute JavaScript code snippets from GitHub

Co je Snippets?

Snippets je rozšíření Chrome vyvinuté riscarrott, a jeho hlavní funkcí je „Import and execute JavaScript code snippets from GitHub“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Snippets

Stáhněte si soubory rozšíření Snippets ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Snippets allows you to import JavaScript code snippets from GitHub (including GitHub Enterprise) and execute them via the context menu or omnibox.

The code is open source and can be found here https://github.com/richardscarrott/snippets                    

Základní Informace o Rozšíření

Název Snippets Snippets
ID dcibnkkafifbanoclgjbkmkbogijndin
Oficiální URL https://chromewebstore.google.com/detail/snippets/dcibnkkafifbanoclgjbkmkbogijndin
Popis Import and execute JavaScript code snippets from GitHub
Velikost souboru 2.13 MB
Počet instalací 388
Aktuální Verze 0.2.7
Poslední Aktualizace 2022-08-07
Datum Vydání 2018-05-13
Hodnocení 4.88/5 Celkem 8 Hodnocení
Vývojář riscarrott
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://github.com/richardscarrott/snippets
URL Stránky Nápovědy http://github.com/richardscarrott/snippets/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Snippets",
    "version": "0.2.7",
    "manifest_version": 2,
    "description": "Import and execute JavaScript code snippets from GitHub",
    "homepage_url": "http:\/\/github.com\/richardscarrott\/snippets",
    "omnibox": {
        "keyword": "s"
    },
    "icons": {
        "16": "artwork\/icon-128.png",
        "48": "artwork\/icon-128.png",
        "128": "artwork\/icon-128.png"
    },
    "background": {
        "scripts": [
            "dist\/background.js"
        ],
        "persistent": true
    },
    "browser_action": [],
    "options_page": "dist\/options.html",
    "options_ui": {
        "page": "dist\/options.html",
        "chrome_style": false,
        "open_in_tab": true
    },
    "permissions": [
        "contextMenus",
        "storage",
        "unlimitedStorage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "dist\/content.js"
            ]
        }
    ]
}