Trello Checklist Plus
Extends the Trello Checklist with usefull functions
ما هو Trello Checklist Plus؟
Trello Checklist Plus هو إضافة Chrome تم تطويرها بواسطة b.geissler89، والميزة الرئيسية لها هي "Extends the Trello Checklist with usefull functions".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Trello Checklist Plus
قم بتنزيل ملفات الامتداد Trello Checklist Plus بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
-Feature to extrude a Checklist Item into a own Card and create a back-link without deleting the actual.
معلومات أساسية عن التمديد
الاسم | Trello Checklist Plus |
ID | lgpellhflojpkpbhiehgfeoiodbhpeil |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/trello-checklist-plus/lgpellhflojpkpbhiehgfeoiodbhpeil |
الوصف | Extends the Trello Checklist with usefull functions |
حجم الملف | 311 KB |
عدد التثبيتات | 53 |
النسخة الحالية | 0.0.12 |
آخر تحديث | 2016-07-20 |
تاريخ النشر | 2016-07-20 |
تقييم | 2.88/5 مجموع تقييمات 8 |
المطور | b.geissler89 |
نوع الدفع | free |
موقع الإضافة | https://www.web-ben.de |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Trello Checklist Plus", "author": "Benjamin Gei\u00dfler", "short_name": "TC+", "version": "0.0.12", "manifest_version": 2, "description": "Extends the Trello Checklist with usefull functions", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "page": "index.html" }, "content_security_policy": "script-src 'self' https:\/\/api.trello.com; object-src 'self'", "content_scripts": [ { "matches": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*" ], "exclude_matches": [ "https:\/\/trello.com\/1\/authorize?*", "http:\/\/trello.com\/1\/authorize?*" ], "js": [ "bower_components\/jQuery\/dist\/jquery.js", "scripts\/contentscript.js" ] }, { "matches": [ "https:\/\/trello.com\/1\/OAuthAuthorizeToken*" ], "js": [ "background\/inject-workaround.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "background\/chrome_ex_oauth.html" ], "permissions": [ "tabs", "https:\/\/trello.com\/1\/OAuthGetRequestToken", "https:\/\/trello.com\/1\/OAuthAuthorizeToken", "https:\/\/trello.com\/1\/OAuthGetAccessToken" ] } |