Snippets

Import and execute JavaScript code snippets from GitHub

Co to jest Snippets?

Snippets to rozszerzenie Chrome opracowane przez riscarrott, a jego główną funkcją jest „Import and execute JavaScript code snippets from GitHub”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Snippets

Pobierz pliki rozszerzeń Snippets w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Snippets Snippets
ID dcibnkkafifbanoclgjbkmkbogijndin
Oficjalny URL https://chromewebstore.google.com/detail/snippets/dcibnkkafifbanoclgjbkmkbogijndin
Opis Import and execute JavaScript code snippets from GitHub
Rozmiar pliku 2.13 MB
Liczba instalacji 388
Aktualna Wersja 0.2.7
Ostatnia Aktualizacja 2022-08-07
Data Publikacji 2018-05-13
Ocena 4.88/5 Łącznie 8 Oceny
Deweloper riscarrott
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://github.com/richardscarrott/snippets
Adres URL Strony Pomocy http://github.com/richardscarrott/snippets/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}