Snippets

Import and execute JavaScript code snippets from GitHub

Wat is Snippets?

Snippets is een Chrome-extensie ontwikkeld door riscarrott, en de belangrijkste functie is "Import and execute JavaScript code snippets from GitHub".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Snippets

Download Snippets-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

                        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                    

Basisinformatie over de Extensie

Naam Snippets Snippets
ID dcibnkkafifbanoclgjbkmkbogijndin
Officiële URL https://chromewebstore.google.com/detail/snippets/dcibnkkafifbanoclgjbkmkbogijndin
Beschrijving Import and execute JavaScript code snippets from GitHub
Bestandsgrootte 2.13 MB
Aantal Installaties 388
Huidige Versie 0.2.7
Laatst Bijgewerkt 2022-08-07
Publicatiedatum 2018-05-13
Beoordeling 4.88/5 Totaal 8 Beoordelingen
Ontwikkelaar riscarrott
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://github.com/richardscarrott/snippets
Help Pagina-URL http://github.com/richardscarrott/snippets/issues
Ondersteunde Talen 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"
            ]
        }
    ]
}