Pipedrive CRM Helper

Adds useful hotkeys to Pipedrive CRM

Pipedrive CRM Helperคืออะไร?

Pipedrive CRM Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nilpo และคุณลักษณะหลักของมันคือ "Adds useful hotkeys to Pipedrive CRM"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pipedrive CRM Helper

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Pipedrive CRM Helper 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"
    ]
}