Snippets

Import and execute JavaScript code snippets from GitHub

Apa itu Snippets?

Snippets adalah ekstensi Chrome yang dikembangkan oleh riscarrott, dan fitur utamanya adalah "Import and execute JavaScript code snippets from GitHub".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Snippets

Unduh file ekstensi Snippets dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Snippets Snippets
ID dcibnkkafifbanoclgjbkmkbogijndin
URL Resmi https://chromewebstore.google.com/detail/snippets/dcibnkkafifbanoclgjbkmkbogijndin
Deskripsi Import and execute JavaScript code snippets from GitHub
Ukuran File 2.13 MB
Jumlah Instalasi 388
Versi Saat Ini 0.2.7
Terakhir Diperbarui 2022-08-07
Tanggal Publikasi 2018-05-13
Penilaian 4.88/5 Total 8 Penilaian
Pengembang riscarrott
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://github.com/richardscarrott/snippets
URL Halaman Bantuan http://github.com/richardscarrott/snippets/issues
Bahasa yang Didukung 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"
            ]
        }
    ]
}