Snippets

Import and execute JavaScript code snippets from GitHub

Cos'è Snippets?

Snippets è un'estensione di Chrome sviluppata da riscarrott, e la sua funzione principale è "Import and execute JavaScript code snippets from GitHub".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Snippets

Scarica i file di estensione Snippets in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Snippets Snippets
ID dcibnkkafifbanoclgjbkmkbogijndin
URL Ufficiale https://chromewebstore.google.com/detail/snippets/dcibnkkafifbanoclgjbkmkbogijndin
Descrizione Import and execute JavaScript code snippets from GitHub
Dimensione del File 2.13 MB
Conteggio Installazioni 388
Versione Corrente 0.2.7
Ultimo Aggiornamento 2022-08-07
Data di Pubblicazione 2018-05-13
Valutazione 4.88/5 Totale 8 Valutazioni
Sviluppatore riscarrott
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://github.com/richardscarrott/snippets
URL della Pagina di Aiuto http://github.com/richardscarrott/snippets/issues
Lingue Supportate 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"
            ]
        }
    ]
}