Snippets

Import and execute JavaScript code snippets from GitHub

What is Snippets?

Snippets is a Chrome extension developed by riscarrott, and its main feature is "Import and execute JavaScript code snippets from GitHub".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Snippets Extension CRX File

Download Snippets extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Snippets Snippets
ID dcibnkkafifbanoclgjbkmkbogijndin
Official URL https://chromewebstore.google.com/detail/snippets/dcibnkkafifbanoclgjbkmkbogijndin
Description Import and execute JavaScript code snippets from GitHub
File Size 2.13 MB
Installation Count 388
Current Version 0.2.7
Last Updated 2022-08-07
Publish Date 2018-05-13
Rating 4.88/5 Total 8 Ratings
Developer riscarrott
Email [email protected]
Payment Type free
Extension Website http://github.com/richardscarrott/snippets
Help Page URL http://github.com/richardscarrott/snippets/issues
Supported Languages 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"
            ]
        }
    ]
}