Snip-It

Copy a simple text snippet about the active tab to the clipboard

Snip-It là gì?

Snip-It là một tiện ích mở rộng Chrome được phát triển bởi crowe.mitch, và tính năng chính của nó là "Copy a simple text snippet about the active tab to the clipboard".

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

Tải xuống các tệp mở rộng Snip-It 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

                        Save webpages to your clipboard for easy pasting into a markdown document.                    

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

Tên Snip-It Snip-It
ID fbioimabbleddmecllbenileihlpnamf
URL Chính Thức https://chrome.google.com/webstore/detail/snip-it/fbioimabbleddmecllbenileihlpnamf
Mô tả Copy a simple text snippet about the active tab to the clipboard
Kích Thước Tệp 33.33 KB
Số Lần Cài Đặt 481
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2017-01-04
Ngày Phát Hành 2017-01-04
Nhà Phát Triển crowe.mitch
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Snip-It",
    "description": "Copy a simple text snippet about the active tab to the clipboard",
    "version": "2.0",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "jquery-2.1.0.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "tab-snippet": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            },
            "description": "Copy a snippet of the current tab"
        }
    },
    "browser_action": {
        "default_title": "Copy a snippet to the clipboard",
        "default_icon": "icon.png"
    },
    "manifest_version": 2
}