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文件
下载Pipedrive CRM Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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"
]
} | |