Text Copy

Copy all text in a tag

ما هو Text Copy؟

Text Copy هو إضافة Chrome تم تطويرها بواسطة textcopyext، والميزة الرئيسية لها هي "Copy all text in a tag".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Text Copy

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

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

                        Text Copy allows for simple keyboard shortcuts to highlight and copy text to the clipboard. This text can be single blocks of texts, or a range of text.                    

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

الاسم Text Copy Text Copy
ID cpckijnniakijaejiimdekjdlnammgko
عنوان URL الرسمي https://chrome.google.com/webstore/detail/text-copy/cpckijnniakijaejiimdekjdlnammgko
الوصف Copy all text in a tag
حجم الملف 470 KB
عدد التثبيتات 5,000
النسخة الحالية 1.1
آخر تحديث 2018-07-05
تاريخ النشر 2018-07-05
تقييم 4.44/5 مجموع تقييمات 16
المطور textcopyext
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Text Copy",
    "version": "1.1",
    "description": "Copy all text in a tag",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "manifest_version": 2,
    "permissions": [
        "",
        "tabs",
        "activeTab",
        "windows"
    ],
    "browser_action": {
        "name": "Text Copy",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "js\/res\/jquery-2.2.0.min.js",
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "persistent": true
        }
    ]
}