Styling Trello
This extension makes certain Trello forms more readable and therefore useful.
ما هو Styling Trello؟
Styling Trello هو إضافة Chrome تم تطويرها بواسطة https://kainoto.com، والميزة الرئيسية لها هي "This extension makes certain Trello forms more readable and therefore useful.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Styling Trello
قم بتنزيل ملفات الامتداد Styling Trello بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
For users of Trello who have hard time reading the cards descriptions and finding the important details. It is a first version and only adjusting few things on the cards. As for example, moving the buttons out of the main dialog window.
معلومات أساسية عن التمديد
الاسم | Styling Trello |
ID | igddgiapehjmgfiionknahkilcbglfpa |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa |
الوصف | This extension makes certain Trello forms more readable and therefore useful. |
حجم الملف | 94.38 KB |
عدد التثبيتات | 154 |
النسخة الحالية | 1.1 |
آخر تحديث | 2016-04-30 |
تاريخ النشر | 2016-04-30 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | https://kainoto.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Styling Trello", "description": "This extension makes certain Trello forms more readable and therefore useful.", "author": "Kainoto", "icons": { "128": "icon-128.png", "64": "icon-64.png", "48": "icon-48.png", "32": "icon-32.png", "16": "icon-16.png" }, "version": "1.1", "permissions": [ "activeTab" ], "background": { "persistent": false, "scripts": [ "bg.js" ], "all_frames": true }, "content_scripts": [ { "matches": [ "https:\/\/*.trello.com\/*" ], "css": [ "tstyle.css" ], "js": [ "tstyle.js" ] } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Styling (making readable) Trello" } } |