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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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 } |