Snippets

Import and execute JavaScript code snippets from GitHub

Was ist Snippets?

Snippets ist eine Chrome-Erweiterung, die von riscarrott entwickelt wurde, und ihr Hauptmerkmal ist "Import and execute JavaScript code snippets from GitHub".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Snippets-Erweiterungs-CRX-Datei herunterladen

Laden Sie Snippets-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Snippets Snippets
ID dcibnkkafifbanoclgjbkmkbogijndin
Offizielle URL https://chromewebstore.google.com/detail/snippets/dcibnkkafifbanoclgjbkmkbogijndin
Beschreibung Import and execute JavaScript code snippets from GitHub
Dateigröße 2.13 MB
Installationsanzahl 388
Aktuelle Version 0.2.7
Letztes Update 2022-08-07
Veröffentlichungsdatum 2018-05-13
Bewertung 4.88/5 Insgesamt 8 Bewertungen
Entwickler riscarrott
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://github.com/richardscarrott/snippets
Hilfeseite URL http://github.com/richardscarrott/snippets/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}