Snippets

Import and execute JavaScript code snippets from GitHub

Snippets là gì?

Snippets là một tiện ích mở rộng Chrome được phát triển bởi riscarrott, và tính năng chính của nó là "Import and execute JavaScript code snippets from GitHub".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Snippets

Tải xuống các tệp mở rộng Snippets dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Snippets Snippets
ID dcibnkkafifbanoclgjbkmkbogijndin
URL Chính Thức https://chromewebstore.google.com/detail/snippets/dcibnkkafifbanoclgjbkmkbogijndin
Mô tả Import and execute JavaScript code snippets from GitHub
Kích Thước Tệp 2.13 MB
Số Lần Cài Đặt 388
Phiên Bản Hiện Tại 0.2.7
Cập Nhật Lần Cuối 2022-08-07
Ngày Phát Hành 2018-05-13
Đánh Giá 4.88/5 Tổng số 8 Đánh Giá
Nhà Phát Triển riscarrott
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://github.com/richardscarrott/snippets
URL Trang Trợ Giúp http://github.com/richardscarrott/snippets/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}