Create Link
Copy current page URL to clipboard in various formats.
ما هو Create Link؟
Create Link هو إضافة Chrome تم تطويرها بواسطة ku، والميزة الرئيسية لها هي "Copy current page URL to clipboard in various formats.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Create Link
قم بتنزيل ملفات الامتداد Create Link بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
(Tested on OSX, WindowsXP, Windows7/64bit) Make HTML link tag easily like Firefox addon Make Link. Copy current page title and URL to clipboard in various formats. *plain text ([page title] [page URL]) *HTML link ([page title] *markdown *mediawiki In extension options page, you can configure formats and shortcut key. Source code is available at http://github.com/ku/CreateLink Tweet @ku if something is wrong with Create Link
معلومات أساسية عن التمديد
الاسم | Create Link |
ID | gcmghdmnkfdbncmnmlkkglmnnhagajbm |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/create-link/gcmghdmnkfdbncmnmlkkglmnnhagajbm |
الوصف | Copy current page URL to clipboard in various formats. |
حجم الملف | 32.25 KB |
عدد التثبيتات | 40,175 |
النسخة الحالية | 0.5.7 |
آخر تحديث | 2022-01-12 |
تاريخ النشر | 2017-07-25 |
تقييم | 4.25/5 مجموع تقييمات 166 |
المطور | ku |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | http://twitter.com/ku/ |
عنوان صفحة المساعدة | http://github.com/ku/CreateLink |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Create Link", "version": "0.5.7", "manifest_version": 3, "background": { "service_worker": "js\/service-worker.js" }, "action": { "default_icon": "icon64.png", "default_title": "Create Link", "default_popup": "popup.html" }, "description": "Copy current page URL to clipboard in various formats.", "icons": { "128": "icon128.png", "16": "icon16.png", "32": "icon32.png", "64": "icon64.png" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*\/*" ], "css": [], "js": [ "js\/content.js" ], "run_at": "document_end", "all_frames": false } ], "commands": { "current-tab-link": { "description": "Current tab in default format" } }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "permissions": [ "contextMenus", "storage", "clipboardWrite" ] } |