Pipedrive CRM Helper
Adds useful hotkeys to Pipedrive CRM
Pipedrive CRM Helper란 무엇입니까?
Pipedrive CRM Helper은(는) Nilpo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds useful hotkeys to Pipedrive CRM"입니다.
확장 프로그램 스크린샷
Pipedrive CRM Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Add useful hotkeys to Pipedrive CRM. To get started, Windows and LInux users can press Alt + H (Option + H on Mac) while on any Pipedrive page.
확장 프로그램 기본 정보
이름 | Pipedrive CRM Helper |
ID | khelhkpoimpdfcdkhbpkmoefgpbjeafm |
공식 URL | https://chromewebstore.google.com/detail/pipedrive-crm-helper/khelhkpoimpdfcdkhbpkmoefgpbjeafm |
설명 | Adds useful hotkeys to Pipedrive CRM |
파일 크기 | 111 KB |
설치 횟수 | 625 |
현재 버전 | 0.0.4 |
최근 업데이트 | 2015-02-23 |
출시 날짜 | 2015-02-22 |
평점 | 2.50/5 총 6 개의 평점 |
개발자 | Nilpo |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://pipedrivehelper.com |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pipedrive CRM Helper", "version": "0.0.4", "description": "Adds useful hotkeys to Pipedrive CRM", "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_title": "Launch Pipedrive" }, "background": { "scripts": [ "\/src\/background.js" ] }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Alt+Shift+P" }, "description": "Launch Pipedrive in new tab" }, "launch-in-current-tab": { "suggested_key": { "default": "Alt+P" }, "description": "Launch Pipedrive in active tab" } }, "content_scripts": [ { "matches": [ "*:\/\/app.pipedrive.com\/*" ], "css": [ "\/src\/dialog.css" ], "js": [ "\/lib\/jquery-2.1.3.min.js", "\/src\/content.js" ], "run_at": "document_end", "all_frames": true } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "options_page": "options.html", "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "*:\/\/app.pipedrive.com\/*", "tabs" ], "content_security_policy": "script-src 'self'; object-src 'self'", "web_accessible_resources": [ "\/src\/dialog.html" ] } |