Snip It

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

什麼是Snip It?

Snip It是由SiteKickr開發的Chrome擴展程式,該擴展的主要功能是“Collect, share, organize and popularize code snippets from around the web.”。

擴展截圖

screenshot

下載Snip It擴展crx文件

下載Snip It擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Snip It Snip It
ID pihmjfcpncibolimhdjmkaacmlgdgakn
官方網址 https://chrome.google.com/webstore/detail/snip-it/pihmjfcpncibolimhdjmkaacmlgdgakn
簡介 Collect, share, organize and popularize code snippets from around the web.
檔案大小 58.62 KB
安裝次數 6,000
目前版本 1.25
更新時間 2014-06-07
上架時間 2014-06-07
評分 2.00/5 共 4 次評分
開發者 SiteKickr
付費類型 free
擴展官網 http://www.sitekickr.com/snip/
說明頁面URL http://www.sitekickr.com/feedback/
支援的語言 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"
            }
        }
    }
}