Snip It

Collect, share, organize and popularize code snippets from around the web.

Snip It là gì?

Snip It là một tiện ích mở rộng Chrome được phát triển bởi SiteKickr, và tính năng chính của nó là "Collect, share, organize and popularize code snippets from around the web.".

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

screenshot

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

                        The SiteKickr Snip button is a way to collect, share, organize and popularize code snippets from around the web.

Code that you have "snipped" will be collected and organized at SiteKickr Snippets.
http://www.sitekickr.com/snip/

Collect your favorite code snippets for easy reference, as well as discover new code that is growing in popularity.

The Snip button is similar to the Facebook Like button, with one unique advantage. It allows you to "like" individual sections of a page, instead of the entire page. This capability allows to you work with one or many individual code snippets on a page, instead of being limited to the page URL itself.                    

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

Tên Snip It Snip It
ID pihmjfcpncibolimhdjmkaacmlgdgakn
URL Chính Thức https://chrome.google.com/webstore/detail/snip-it/pihmjfcpncibolimhdjmkaacmlgdgakn
Mô tả Collect, share, organize and popularize code snippets from around the web.
Kích Thước Tệp 58.62 KB
Số Lần Cài Đặt 6,000
Phiên Bản Hiện Tại 1.25
Cập Nhật Lần Cuối 2014-06-07
Ngày Phát Hành 2014-06-07
Đánh Giá 2.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển SiteKickr
Loại Thanh Toán free
Trang Web Mở Rộng http://www.sitekickr.com/snip/
URL Trang Trợ Giúp http://www.sitekickr.com/feedback/
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Snip It",
    "short_name": "Snip It",
    "description": "Collect, share, organize and popularize code snippets from around the web.",
    "version": "1.25",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.sitekickr.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "gadget.css"
            ],
            "js": [
                "jquery.min.js",
                "jquery.colorbox-min.js",
                "gadget.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "jquery.min.js",
        "jquery.colorbox-min.js",
        "gadget.js",
        "gadget.css"
    ],
    "browser_action": {
        "default_icon": "settings\/settings-icon.png",
        "default_popup": "settings\/settings.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "windows": "Ctrl+Shift+S",
                "mac": "Command+Shift+S",
                "chromeos": "Ctrl+Shift+S",
                "linux": "Ctrl+Shift+S"
            }
        }
    }
}