Copy HTML Link
Copy link to the current page (with page title) to the clipboard.
ما هو Copy HTML Link؟
Copy HTML Link هو إضافة Chrome تم تطويرها بواسطة Paul Irish، والميزة الرئيسية لها هي "Copy link to the current page (with page title) to the clipboard.".
تحميل ملف CRX للإضافة Copy HTML Link
قم بتنزيل ملفات الامتداد Copy HTML Link بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Click once for HTML link and text fallback. Double-click to copy text as markdown. Also available via keyboard shortcut: * Alt+Shift+C on Windows / Linux * Ctrl+Shift+C on Mac (Protip: Tapping the C twice will "double-click") Source: https://github.com/paulirish/CopyLink-extension
معلومات أساسية عن التمديد
الاسم | |
ID | ipefndfjbbonoeiaggfhibcnimekokjl |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/copy-html-link/ipefndfjbbonoeiaggfhibcnimekokjl |
الوصف | Copy link to the current page (with page title) to the clipboard. |
حجم الملف | 17.37 KB |
عدد التثبيتات | 315 |
النسخة الحالية | 1.2 |
آخر تحديث | 2016-11-05 |
تاريخ النشر | 2016-11-05 |
تقييم | 4.75/5 مجموع تقييمات 4 |
المطور | Paul Irish |
نوع الدفع | free |
موقع الإضافة | https://github.com/paulirish/CopyLink-extension |
عنوان صفحة المساعدة | https://github.com/paulirish/CopyLink-extension/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "page": "background.html", "persistent": false }, "browser_action": { "default_icon": "icon64.png", "default_title": "Copy HTML Link" }, "description": "Copy link to the current page (with page title) to the clipboard.", "icons": { "128": "icon128.png", "16": "icon16.png", "32": "icon32.png", "64": "icon64.png" }, "name": "Copy HTML Link", "permissions": [ "activeTab", "clipboardWrite", "contextMenus" ], "version": "1.2", "commands": { "copy-html-link": { "suggested_key": { "default": "Alt+Shift+C", "mac": "MacCtrl+Shift+C" }, "description": "Copy link of the page (with title)" } } } |