Asana decorator
The extension adds styles for blockquotes, horizontal lines in task’s comments on asana.com
Asana decoratorคืออะไร?
Asana decorator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nikita Slobozhaninov และคุณลักษณะหลักของมันคือ "The extension adds styles for blockquotes, horizontal lines in task’s comments on asana.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Asana decorator
ดาวน์โหลดไฟล์ส่วนขยาย Asana decorator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
1) You can use > characters for blockquoting. > This is a blockquote Lorem ipsum dolor sit amet... 2) You can produce a horizontal line by placing three or more hyphens on a line by themselves. Lorem ipsum dolor sit amet... --- Excepteur sint occaecat cupidatat non proident.... 3) You can quickly answer with blockquotes using button "REPLY"
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | nnoeneakknmdclilkfjpkhgaadeabpic |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/asana-decorator/nnoeneakknmdclilkfjpkhgaadeabpic |
คำอธิบาย | The extension adds styles for blockquotes, horizontal lines in task’s comments on asana.com |
ขนาดไฟล์ | 62.26 KB |
จำนวนการติดตั้ง | 41 |
เวอร์ชันปัจจุบัน | 2.3.0 |
อัปเดตครั้งล่าสุด | 2020-10-18 |
วันที่เผยแพร่ | 2019-10-01 |
คะแนน | 4.33/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Nikita Slobozhaninov |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Asana decorator", "description": "The extension adds styles for blockquotes, horizontal lines in task\u2019s comments on asana.com", "version": "2.3.0", "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "64": "images\/icon_64.png", "128": "images\/icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/app.asana.com\/*", "http:\/\/app.asana.com\/*" ], "js": [ "content_scripts\/content_scripts.js" ], "css": [ "content_scripts\/content_scripts.css" ], "run_at": "document_end" } ], "permissions": [ "activeTab" ] } |