Copy Link/Tab Name and URL

Copy the name and URL of a link or a Tab.

ما هو Copy Link/Tab Name and URL؟

Copy Link/Tab Name and URL هو إضافة Chrome تم تطويرها بواسطة https://sites.google.com/site/copylinknameandurl، والميزة الرئيسية لها هي "Copy the name and URL of a link or a Tab.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Copy Link/Tab Name and URL

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

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

                        It adds a command to the context munu on the link and copies the link's name(source anchor) and URL with the plain text format. It also copies the tab's titile and url.
So this extension makes it very easy to share the links with IM, Email, blog and so on.

It has a Preference Page to configure the Format.                    

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

الاسم Copy Link/Tab Name and URL Copy Link/Tab Name and URL
ID noakklbbencpgcahamhocalnepfjeeok
عنوان URL الرسمي https://chromewebstore.google.com/detail/copy-linktab-name-and-url/noakklbbencpgcahamhocalnepfjeeok
الوصف Copy the name and URL of a link or a Tab.
حجم الملف 11.64 KB
عدد التثبيتات 236
النسخة الحالية 3.1
آخر تحديث 2021-04-01
تاريخ النشر 2020-02-26
المطور https://sites.google.com/site/copylinknameandurl
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/wadefelix/copylinktabnameandurl
اللغات المدعومة en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "3.1",
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/wadefelix\/copylinktabnameandurl",
    "author": "Ren Wei",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "icons\/page-16.png",
        "32": "icons\/page-32.png",
        "48": "icons\/page-48.png"
    },
    "options_ui": {
        "page": "options.html"
    }
}