Snip-It

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

ما هو Snip-It؟

Snip-It هو إضافة Chrome تم تطويرها بواسطة crowe.mitch، والميزة الرئيسية لها هي "Copy a simple text snippet about the active tab to the clipboard".

تحميل ملف CRX للإضافة Snip-It

قم بتنزيل ملفات الامتداد Snip-It بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Snip-It Snip-It
ID fbioimabbleddmecllbenileihlpnamf
عنوان URL الرسمي https://chrome.google.com/webstore/detail/snip-it/fbioimabbleddmecllbenileihlpnamf
الوصف Copy a simple text snippet about the active tab to the clipboard
حجم الملف 33.33 KB
عدد التثبيتات 481
النسخة الحالية 2.0
آخر تحديث 2017-01-04
تاريخ النشر 2017-01-04
المطور crowe.mitch
نوع الدفع free
اللغات المدعومة 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
}