Asana Quick Search
Quickly search through Asana. Requires Asana Quick Add + extension to open tasks.
什麼是Asana Quick Search?
Asana Quick Search是由Bazyli Brzóska開發的Chrome擴展程式,該擴展的主要功能是“Quickly search through Asana. Requires Asana Quick Add + extension to open tasks.”。
擴展截圖
下載Asana Quick Search擴展crx文件
下載Asana Quick Search擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Quickly search through Asana without switching or opening the Asana tab. It requires the 'Asana Quick Add +' extension to open tasks. You can get that extension here: https://chrome.google.com/webstore/detail/asana-quick-add-%20/hchnkninfafagfbmaggdgiebngffgmfh Possibility to open (multiple) tasks in a panel, other searches open in a new Asana tab.
擴展基本資訊
名稱 | |
ID | nagbddbjnlaickolplbdhelhojnpfmgn |
官方網址 | https://chrome.google.com/webstore/detail/asana-quick-search/nagbddbjnlaickolplbdhelhojnpfmgn |
簡介 | Quickly search through Asana. Requires Asana Quick Add + extension to open tasks. |
檔案大小 | 26.45 KB |
安裝次數 | 39 |
目前版本 | 0.9.9 |
更新時間 | 2014-05-23 |
上架時間 | 2014-05-23 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Bazyli Brzóska |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Asana Quick Search", "version": "0.9.9", "description": "Quickly search through Asana. Requires Asana Quick Add + extension to open tasks.", "minimum_chrome_version": "33", "background": { "persistent": true, "scripts": [ "vendor\/regenerator-runtime.min.js", "lib\/chrome.api.async.common.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.asana.com\/*" ], "css": [], "js": [ "vendor\/regenerator-runtime.min.js", "lib\/chrome.api.async.common.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" }, "default_title": "Asana Quick Search", "default_popup": "popup.html" }, "permissions": [ "*:\/\/*.asana.com\/*", "webRequest", "webRequestBlocking" ], "web_accessible_resources": [ "foreground.css", "escapeclose.js" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+Z" } } }, "manifest_version": 2 } |