Snippets

Import and execute JavaScript code snippets from GitHub

Qu'est-ce que Snippets ?

Snippets est une extension Chrome développée par riscarrott, et sa fonction principale est "Import and execute JavaScript code snippets from GitHub".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Snippets

Téléchargez les fichiers d'extension Snippets au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Snippets Snippets
ID dcibnkkafifbanoclgjbkmkbogijndin
URL Officiel https://chromewebstore.google.com/detail/snippets/dcibnkkafifbanoclgjbkmkbogijndin
Description Import and execute JavaScript code snippets from GitHub
Taille du Fichier 2.13 MB
Nombre d'Installations 388
Version Actuelle 0.2.7
Dernière Mise à Jour 2022-08-07
Date de Publication 2018-05-13
Évaluation 4.88/5 Total 8 Évaluations
Développeur riscarrott
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://github.com/richardscarrott/snippets
URL de la Page d'Aide http://github.com/richardscarrott/snippets/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}