Snip-It

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

Apa itu Snip-It?

Snip-It adalah ekstensi Chrome yang dikembangkan oleh crowe.mitch, dan fitur utamanya adalah "Copy a simple text snippet about the active tab to the clipboard".

Unduh Berkas CRX Ekstensi Snip-It

Unduh file ekstensi Snip-It dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Snip-It Snip-It
ID fbioimabbleddmecllbenileihlpnamf
URL Resmi https://chrome.google.com/webstore/detail/snip-it/fbioimabbleddmecllbenileihlpnamf
Deskripsi Copy a simple text snippet about the active tab to the clipboard
Ukuran File 33.33 KB
Jumlah Instalasi 481
Versi Saat Ini 2.0
Terakhir Diperbarui 2017-01-04
Tanggal Publikasi 2017-01-04
Pengembang crowe.mitch
Tipe Pembayaran free
Bahasa yang Didukung 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
}