Pipedrive CRM Helper
Adds useful hotkeys to Pipedrive CRM
Pipedrive CRM Helper là gì?
Pipedrive CRM Helper là một tiện ích mở rộng Chrome được phát triển bởi Nilpo, và tính năng chính của nó là "Adds useful hotkeys to Pipedrive CRM".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Pipedrive CRM Helper
Tải xuống các tệp mở rộng Pipedrive CRM Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Pipedrive CRM Helper |
ID | khelhkpoimpdfcdkhbpkmoefgpbjeafm |
URL Chính Thức | https://chromewebstore.google.com/detail/pipedrive-crm-helper/khelhkpoimpdfcdkhbpkmoefgpbjeafm |
Mô tả | Adds useful hotkeys to Pipedrive CRM |
Kích Thước Tệp | 111 KB |
Số Lần Cài Đặt | 625 |
Phiên Bản Hiện Tại | 0.0.4 |
Cập Nhật Lần Cuối | 2015-02-23 |
Ngày Phát Hành | 2015-02-22 |
Đánh Giá | 2.50/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Nilpo |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://pipedrivehelper.com |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |