Always Copy

A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.

ما هو Always Copy؟

Always Copy هو إضافة Chrome تم تطويرها بواسطة japamat، والميزة الرئيسية لها هي "A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.".

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

screenshot

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

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

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

                        Lets you copy highlighted text to your clip board even when the page doesn't allow you to do so by right clicking the traditional copy button or using ⌘ + c (windows: ctrl + c) doesn't work.                    

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

الاسم Always Copy Always Copy
ID pfiieiadpcemdkcaaicekbiokgnojnim
عنوان URL الرسمي https://chromewebstore.google.com/detail/always-copy/pfiieiadpcemdkcaaicekbiokgnojnim
الوصف A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.
حجم الملف 6.92 KB
عدد التثبيتات 288
النسخة الحالية 1.0
آخر تحديث 2020-06-17
تاريخ النشر 2020-06-16
المطور japamat
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Always Copy",
    "version": "1.0",
    "description": "A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "16": "images\/copy_16.png",
            "32": "images\/copy_32.png",
            "48": "images\/copy_48.png",
            "128": "images\/copy_128.png"
        }
    },
    "icons": {
        "16": "images\/copy_16.png",
        "32": "images\/copy_32.png",
        "48": "images\/copy_48.png",
        "128": "images\/copy_128.png"
    },
    "manifest_version": 2
}