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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}