Add this page to Trello
Add this page to Trello as new task
Add this page to Trelloคืออะไร?
Add this page to Trello เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.muratayusuke.com และคุณลักษณะหลักของมันคือ "Add this page to Trello as new task"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Add this page to Trello
ดาวน์โหลดไฟล์ส่วนขยาย Add this page to Trello ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Simple extension for Trello user to add current page to Trello as new task.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Add this page to Trello |
ID | fjfljghieliggacelkamhfiiejncmjmi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/add-this-page-to-trello/fjfljghieliggacelkamhfiiejncmjmi |
คำอธิบาย | Add this page to Trello as new task |
ขนาดไฟล์ | 53.6 KB |
จำนวนการติดตั้ง | 552 |
เวอร์ชันปัจจุบัน | 0.105 |
อัปเดตครั้งล่าสุด | 2015-06-06 |
วันที่เผยแพร่ | 2015-06-05 |
คะแนน | 3.33/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | https://www.muratayusuke.com |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "version": "0.105", "description": "__MSG_appDesc__", "default_locale": "en", "icons": { "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "scripts": [ "jquery-2.1.3.min.js", "main.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-2.1.3.min.js", "script.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "img\/icon.png", "default_title": "Add this page to Trello", "default_popup": "popup.html" }, "permissions": [ "tabs", "activeTab", "http:\/\/*\/*\/", "https:\/\/*\/*\/" ] } |