Copy Element Text

Copies the text inside elements

ما هو Copy Element Text؟

Copy Element Text هو إضافة Chrome تم تطويرها بواسطة mistweaver.co، والميزة الرئيسية لها هي "Copies the text inside elements".

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

screenshot
screenshot

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

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

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

                        Enables you to copy the text of an element within the context menu.
Just right click on the link and select "Copy element text".

Full source-code available here: https://github.com/mistweaverco/copy-element-text

If you're looking for a "copy a link text" extension, head over to the companion extension here:

Copy Link Text
https://chrome.google.com/webstore/detail/copy-link-text/loeniidbmeohdlmipbpkfmiogbcncibh?hl=en                    

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

الاسم Copy Element Text Copy Element Text
ID lejdjhmnhlhjhfmcalaimioiogkibdea
عنوان URL الرسمي https://chromewebstore.google.com/detail/copy-element-text/lejdjhmnhlhjhfmcalaimioiogkibdea
الوصف Copies the text inside elements
حجم الملف 41.63 KB
عدد التثبيتات 564
النسخة الحالية 1.0.0
آخر تحديث 2022-10-19
تاريخ النشر 2022-10-03
تقييم 3.60/5 مجموع تقييمات 5
المطور mistweaver.co
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy Element Text",
    "version": "1.0.0",
    "description": "Copies the text inside elements",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon-32.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "boot.js"
            ]
        }
    ]
}