Pipedrive CRM Helper
Adds useful hotkeys to Pipedrive CRM
O que é Pipedrive CRM Helper?
Pipedrive CRM Helper é uma extensão do Chrome desenvolvida por Nilpo, e sua principal característica é "Adds useful hotkeys to Pipedrive CRM".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Pipedrive CRM Helper
Baixe arquivos de extensão Pipedrive CRM Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Pipedrive CRM Helper |
ID | khelhkpoimpdfcdkhbpkmoefgpbjeafm |
URL Oficial | https://chromewebstore.google.com/detail/pipedrive-crm-helper/khelhkpoimpdfcdkhbpkmoefgpbjeafm |
Descrição | Adds useful hotkeys to Pipedrive CRM |
Tamanho do Arquivo | 111 KB |
Contagem de Instalações | 625 |
Versão Atual | 0.0.4 |
Última Atualização | 2015-02-23 |
Data de Publicação | 2015-02-22 |
Classificação | 2.50/5 Total de 6 Avaliações |
Desenvolvedor | Nilpo |
Tipo de Pagamento | free |
Site da Extensão | http://pipedrivehelper.com |
Idiomas Suportados | 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" ] } |