Bernie PB

Updates your BerniePB call stats as you use the Bernie dialer.

O que é Bernie PB?

Bernie PB é uma extensão do Chrome desenvolvida por https://berniepb.com, e sua principal característica é "Updates your BerniePB call stats as you use the Bernie dialer.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Bernie PB

Baixe arquivos de extensão Bernie PB 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

                        BerniePB.com is a website that, among other things, lets you track how many phone banking calls you've made for the Bernie Sanders campaign on a computer through the Bernie Dialer. This extension listens for when you've "saved" a call, and updates your statistics on Bernie PB accordingly.

You will need to be logged in to Bernie PB for this extension to track your calls properly. Please make sure you have this extension installed, have an account on BerniePB.com, and are logged in to Bernie PB before you log in to the Bernie Dialer!

Note: Bernie PB was created by grassroots coders, and is not officially associated with the Bernie 2020 campaign.

Privacy policy: https://www.berniepb.com/privacy/                    

Informações Básicas da Extensão

Nome Bernie PB Bernie PB
ID ippaapoiolpdkljaeicdcjilfdimgklb
URL Oficial https://chromewebstore.google.com/detail/bernie-pb/ippaapoiolpdkljaeicdcjilfdimgklb
Descrição Updates your BerniePB call stats as you use the Bernie dialer.
Tamanho do Arquivo 120 KB
Contagem de Instalações 705
Versão Atual 1.0.24
Última Atualização 2020-03-18
Data de Publicação 2020-03-17
Classificação 4.68/5 Total de 22 Avaliações
Desenvolvedor https://berniepb.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.berniepb.com
URL da Página de Ajuda https://www.berniepb.com/help/
URL da Página de Política de Privacidade https://www.berniepb.com/privacy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bernie PB",
    "version": "1.0.24",
    "description": "Updates your BerniePB call stats as you use the Bernie dialer.",
    "browser_action": {
        "name": "Bernie PB",
        "icons": [
            "icon_v2_250.png"
        ],
        "default_icon": "icon_v2_250.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon_v2_16.png",
        "48": "icon_v2_48.png",
        "128": "icon_v2_128.png"
    },
    "permissions": [
        "cookies",
        "https:\/\/www.berniepb.com\/",
        "storage"
    ],
    "background": {
        "scripts": [
            "jquery-3.3.1.min.js",
            "common.js",
            "background.js",
            "bg_locale_fetch.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.3.1.min.js",
                "common.js",
                "content_script.js"
            ],
            "matches": [
                "*:\/\/*.openvpb.com\/*",
                "*:\/\/www.berniepb.com\/*",
                "*:\/\/*.livevox.com\/*",
                "*:\/\/*.callhub.io\/*"
            ]
        }
    ],
    "manifest_version": 2
}