Pipedrive CRM Helper
Adds useful hotkeys to Pipedrive CRM
Pipedrive CRM Helper क्या है?
Pipedrive CRM Helper Nilpo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds useful hotkeys to Pipedrive CRM"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pipedrive CRM Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |