Mantis2Trello
Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url
ما هو Mantis2Trello؟
Mantis2Trello هو إضافة Chrome تم تطويرها بواسطة https://www.jcnistal.es، والميزة الرئيسية لها هي "Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Mantis2Trello
قم بتنزيل ملفات الامتداد Mantis2Trello بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url
معلومات أساسية عن التمديد
الاسم | |
ID | ddiiaojmncfmdmghfinjfedilkegilom |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/mantis2trello/ddiiaojmncfmdmghfinjfedilkegilom |
الوصف | Create Trello Cards from Mantis Bug Tracker 0.3 -> Soporte para Url de Mantis sin /mantis/ o /bugs/ en la url |
حجم الملف | 50.06 KB |
عدد التثبيتات | 117 |
النسخة الحالية | 0.3 |
آخر تحديث | 2018-11-23 |
تاريخ النشر | 2018-11-23 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | https://www.jcnistal.es |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/nikeyes/Mantis2Trello |
عنوان صفحة المساعدة | https://github.com/nikeyes/Mantis2Trello/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mantis2Trello", "short_name": "Mantis2Trello", "description": "", "version": "0.3", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "Mantis2TrelloIcon16.png", "48": "Mantis2TrelloIcon48.png", "128": "Mantis2TrelloIcon128.png" }, "page_action": { "default_icon": "Mantis2TrelloIcon16.png", "default_title": "Click to Create Trello Card with this Mantis." }, "options_page": "options.html", "content_scripts": [ { "matches": [ "*:\/\/*\/mantis\/view.php*", "*:\/\/*\/bugs\/view.php*", "*:\/\/*\/view.php*" ], "js": [ "jquery.1.7.1.min.js", "client.js", "content.js" ], "run_at": "document_end" } ], "permissions": [ "*:\/\/*\/mantis\/view.php*", "*:\/\/*\/bugs\/view.php*", "*:\/\/*\/view.php*", "declarativeContent", "tabs", "storage" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |