Pipedrive CRM Helper
Adds useful hotkeys to Pipedrive CRM
Cos'è Pipedrive CRM Helper?
Pipedrive CRM Helper è un'estensione di Chrome sviluppata da Nilpo, e la sua funzione principale è "Adds useful hotkeys to Pipedrive CRM".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Pipedrive CRM Helper
Scarica i file di estensione Pipedrive CRM Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Pipedrive CRM Helper |
ID | khelhkpoimpdfcdkhbpkmoefgpbjeafm |
URL Ufficiale | https://chromewebstore.google.com/detail/pipedrive-crm-helper/khelhkpoimpdfcdkhbpkmoefgpbjeafm |
Descrizione | Adds useful hotkeys to Pipedrive CRM |
Dimensione del File | 111 KB |
Conteggio Installazioni | 625 |
Versione Corrente | 0.0.4 |
Ultimo Aggiornamento | 2015-02-23 |
Data di Pubblicazione | 2015-02-22 |
Valutazione | 2.50/5 Totale 6 Valutazioni |
Sviluppatore | Nilpo |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://pipedrivehelper.com |
Lingue Supportate | 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" ] } |