Snippets

Import and execute JavaScript code snippets from GitHub

Hvad er Snippets?

Snippets er en Chrome-udvidelse udviklet af riscarrott, og dens hovedfunktion er "Import and execute JavaScript code snippets from GitHub".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Snippets-udvidelses-CRX-fil

Download Snippets-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Snippets Snippets
ID dcibnkkafifbanoclgjbkmkbogijndin
Officiel URL https://chromewebstore.google.com/detail/snippets/dcibnkkafifbanoclgjbkmkbogijndin
Beskrivelse Import and execute JavaScript code snippets from GitHub
Filstørrelse 2.13 MB
Antal Installationer 388
Nuværende Version 0.2.7
Senest Opdateret 2022-08-07
Udgivelsesdato 2018-05-13
Bedømmelse 4.88/5 Samlet 8 Bedømmelser
Udvikler riscarrott
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://github.com/richardscarrott/snippets
Hjælpeside-URL http://github.com/richardscarrott/snippets/issues
Understøttede Sprog 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"
            ]
        }
    ]
}