Copy Link With Title

This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.

ما هو Copy Link With Title؟

Copy Link With Title هو إضافة Chrome تم تطويرها بواسطة Paul Cohn، والميزة الرئيسية لها هي "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.".

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

screenshot

تحميل ملف CRX للإضافة Copy Link With Title

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

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

                        * Copy a link with the title for pasting into a notetaking app for clearer notes
* Copy as HTML and paste into code
* Copy as Markdown and paste into Reddit or Github
* Define your own format for whatever crazy schemes you have

Update 2021/08/25:
* Updated icon for better visibility in dark mode.

Update 2020/01/17:
* Newlines work!                    

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

الاسم Copy Link With Title Copy Link With Title
ID cfbjnjeaoamknmdojhgcblkebcphmcei
عنوان URL الرسمي https://chromewebstore.google.com/detail/copy-link-with-title/cfbjnjeaoamknmdojhgcblkebcphmcei
الوصف This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.
حجم الملف 58.18 KB
عدد التثبيتات 1,412
النسخة الحالية 1.0.2
آخر تحديث 2021-08-25
تاريخ النشر 2020-01-16
تقييم 3.54/5 مجموع تقييمات 13
المطور Paul Cohn
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://twitter.com/paulsterr
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Copy Link With Title",
    "description": "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.",
    "version": "1.0.2",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}