eMailTo:Clipboard
This extension overides the html mailto: default and copys the email to your clipboard instead.
ما هو eMailTo:Clipboard؟
eMailTo:Clipboard هو إضافة Chrome تم تطويرها بواسطة aturkewi، والميزة الرئيسية لها هي "This extension overides the html mailto: default and copys the email to your clipboard instead.".
تحميل ملف CRX للإضافة eMailTo:Clipboard
قم بتنزيل ملفات الامتداد eMailTo:Clipboard بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
When installed, this app will overide the mailto in an html link and just copy the email address to your clipboard rather than opening up your default mail client.
معلومات أساسية عن التمديد
الاسم | eMailTo:Clipboard |
ID | dpckhpnekcojocijmcdpondmicbkbgpo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/emailtoclipboard/dpckhpnekcojocijmcdpondmicbkbgpo |
الوصف | This extension overides the html mailto: default and copys the email to your clipboard instead. |
حجم الملف | 23.48 KB |
عدد التثبيتات | 193 |
النسخة الحالية | 1.5 |
آخر تحديث | 2017-03-07 |
تاريخ النشر | 2017-03-07 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | aturkewi |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "eMailTo:Clipboard", "description": "This extension overides the html mailto: default and copys the email to your clipboard instead.", "version": "1.5", "browser_action": { "default_icon": "email-to-clipboard-logo.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "index.js" ], "css": [ "tooltip.css" ], "run_at": "document_idle" } ] } |