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
电子邮箱 [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"
            ]
        }
    ]
}