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
公式URL 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"
            }
        }
    }
}