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"
    ]
}  |  |