Asana Quick Add +
Quickly add your notes, website research and archive it as attachment to Asana, from any web page or Chrome window.
Asana Quick Add +คืออะไร?
Asana Quick Add + เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bazyli Brzóska และคุณลักษณะหลักของมันคือ "Quickly add your notes, website research and archive it as attachment to Asana, from any web page or Chrome window."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Asana Quick Add +
ดาวน์โหลดไฟล์ส่วนขยาย Asana Quick Add + ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is a different implementation of Asana's Quick Add Extension. Quickly add your notes, website research and archive it as attachment to Asana, from any web page or Chrome window. Note down things with an always-on-top Asana window when making research. Native Asana interface, allows everything that the full-blown Asana allows - tagging, adding to projects, leaving task unassigned, inserting a whole window of tabs and by default attaches an archival copy of the open website(s) for your own research purposes. The permissions are required for saving the archive of the currently open tab/window. In the future I'll post an alternative version without that feature. The source is on GitHub. https://github.com/niieani/Asana-Research-Chrome-Extension/ If you have an improvement, file a pull request. If you have suggestions or comments, leave a review or email me at: bazyli.brzoska (at) gmail.com
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Asana Quick Add + |
ID | hchnkninfafagfbmaggdgiebngffgmfh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/asana-quick-add-+/hchnkninfafagfbmaggdgiebngffgmfh |
คำอธิบาย | Quickly add your notes, website research and archive it as attachment to Asana, from any web page or Chrome window. |
ขนาดไฟล์ | 125 KB |
จำนวนการติดตั้ง | 134 |
เวอร์ชันปัจจุบัน | 1.0.8 |
อัปเดตครั้งล่าสุด | 2022-05-29 |
วันที่เผยแพร่ | 2019-11-01 |
คะแนน | 3.20/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Bazyli Brzóska |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Asana Quick Add +", "version": "1.0.8", "description": "Quickly add your notes, website research and archive it as attachment to Asana, from any web page or Chrome window.", "minimum_chrome_version": "33", "options_page": "options\/index.html", "background": { "persistent": true, "scripts": [ "vendor\/regenerator-runtime.min.js", "vendor\/zip.js", "options\/lib\/store.js", "lib\/chrome.api.async.common.js", "lib\/chrome.api.async.background.js", "lib\/zipmodel.js", "lib\/asana.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.asana.com\/*" ], "css": [], "js": [ "vendor\/regenerator-runtime.min.js", "options\/lib\/store.js", "lib\/backgroundInterop.async.foreground.js", "lib\/chrome.api.async.common.js", "lib\/chrome.api.async.foreground.js", "lib\/asana.js", "foreground.js" ], "run_at": "document_end", "all_frames": true } ], "icons": { "128": "icon128.png", "48": "icon48.png", "16": "icon16.png" }, "browser_action": { "default_icon": { "19": "icon19.png", "38": "icon48.png" }, "default_title": "Asana Quick Add +" }, "permissions": [ "tabs", "*:\/\/*.asana.com\/*", "pageCapture" ], "web_accessible_resources": [ "foreground.css" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+A" } } }, "manifest_version": 2 } |