Snippets

Import and execute JavaScript code snippets from GitHub

Snippetsとは何ですか?

Snippetsはriscarrottによって開発されたChromeの拡張機能で、その主な機能は「Import and execute JavaScript code snippets from GitHub」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Snippets拡張機能のCRXファイルをダウンロード

Snippets拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Snippets Snippets
ID dcibnkkafifbanoclgjbkmkbogijndin
公式URL https://chromewebstore.google.com/detail/snippets/dcibnkkafifbanoclgjbkmkbogijndin
説明 Import and execute JavaScript code snippets from GitHub
ファイルサイズ 2.13 MB
インストール数 388
現在のバージョン 0.2.7
最終更新日 2022-08-07
公開日 2018-05-13
評価 4.88/5 合計 8 レビュー
開発者 riscarrott
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://github.com/richardscarrott/snippets
ヘルプページのURL http://github.com/richardscarrott/snippets/issues
対応言語 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"
            ]
        }
    ]
}