Copy Trim
This extension remove white spaces before and after the copy
ما هو Copy Trim؟
Copy Trim هو إضافة Chrome تم تطويرها بواسطة galvish، والميزة الرئيسية لها هي "This extension remove white spaces before and after the copy".
تحميل ملف CRX للإضافة Copy Trim
قم بتنزيل ملفات الامتداد Copy Trim بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
معلومات أساسية عن التمديد
الاسم | |
ID | jgmiikpncidgpcmbpafdkjkfamjnilln |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/copy-trim/jgmiikpncidgpcmbpafdkjkfamjnilln |
الوصف | This extension remove white spaces before and after the copy |
حجم الملف | 8.05 KB |
عدد التثبيتات | 128 |
النسخة الحالية | 0.0.3 |
آخر تحديث | 2017-06-26 |
تاريخ النشر | 2017-06-26 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | galvish |
نوع الدفع | free |
موقع الإضافة | https://github.com/GalVishnevsky/CopyTrim |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Trim", "version": "0.0.3", "manifest_version": 2, "description": "This extension remove white spaces before and after the copy", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "browser_action": { "default_popup": "src\/bg\/popup.html" }, "permissions": [ "clipboardRead", "clipboardWrite" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/oncopy.js" ] } ] } |