Copyables

Makes the text/label of focused links copyable. Also via contextmenu.

ما هو Copyables؟

Copyables هو إضافة Chrome تم تطويرها بواسطة Rudie Dirkx، والميزة الرئيسية لها هي "Makes the text/label of focused links copyable. Also via contextmenu.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Copyables

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

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

                        Makes the text/label of focused links copyable by using the normal copy keyboard command (CTRL + V for me).

Adds a contextmenu option to copy an element's text, for instance a link's label or a table cell's content.

Adds a contextmenu option to find background images.                    

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

الاسم Copyables Copyables
ID pgghkebpjnjjiblaajkkaniphdbfeogl
عنوان URL الرسمي https://chromewebstore.google.com/detail/copyables/pgghkebpjnjjiblaajkkaniphdbfeogl
الوصف Makes the text/label of focused links copyable. Also via contextmenu.
حجم الملف 8.87 KB
عدد التثبيتات 40
النسخة الحالية 1.9
آخر تحديث 2022-09-25
تاريخ النشر 2017-10-16
المطور Rudie Dirkx
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://github.com/rudiedirkx/copyables-extension/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copyables",
    "version": "1.9",
    "manifest_version": 3,
    "description": "Makes the text\/label of focused links copyable. Also via contextmenu.",
    "icons": {
        "128": "images\/logo_128.png"
    },
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "service_worker": "copyables.sw.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_end",
            "js": [
                "copyables.content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}