Snip It

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

Τι είναι το Snip It;

Το Snip It είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον SiteKickr, και η κύρια λειτουργία του είναι "Collect, share, organize and popularize code snippets from around the web.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Snip It

Λήψη αρχείων επέκτασης 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"
            }
        }
    }
}