PCRecruiter Google Voice Plugin

This extension allows access to Google Voice using PCRecruiter.

Vad är PCRecruiter Google Voice Plugin?

PCRecruiter Google Voice Plugin är en Chrome-tillägg utvecklad av PCRecruiter, och dess huvudfunktion är "This extension allows access to Google Voice using PCRecruiter.".

Tilläggsskärmbilder

screenshot

Ladda ner PCRecruiter Google Voice Plugin-förlängningens CRX-fil

Ladda ner PCRecruiter Google Voice Plugin-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        An extension that allows Google Voice to be used as the integrated dialer within PCRecruiter. Call your candidates through your browser!                    

Grundläggande Information om Tillägg

Namn PCRecruiter Google Voice Plugin PCRecruiter Google Voice Plugin
ID jbnipflpcmcdjnakjipfbcikigcdbhpe
Officiell webbadress https://chromewebstore.google.com/detail/pcrecruiter-google-voice/jbnipflpcmcdjnakjipfbcikigcdbhpe
Beskrivning This extension allows access to Google Voice using PCRecruiter.
Filstorlek 219 KB
Antal Installationer 232
Aktuell Version 1.0.10
Senast Uppdaterad 2022-10-08
Publiceringsdatum 2019-09-06
Betyg 4.50/5 Totalt 4 Betyg
Utvecklare PCRecruiter
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.pcrecruiter.net/
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PCRecruiter Google Voice Plugin",
    "description": "This extension allows access to Google Voice using PCRecruiter.",
    "version": "1.0.10",
    "icons": {
        "128": "phone.png"
    },
    "options_page": "options.html",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/*.google.com\/",
        "https:\/\/content.googleapis.com\/",
        "notifications"
    ],
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "phone.png",
            "24": "phone.png",
            "32": "phone.png"
        },
        "default_title": "PCR_Google_Voice",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.pcrecruiter.net\/*",
                "https:\/\/voice.google.com\/*"
            ],
            "css": [
                "extension.css"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "voicex.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'",
    "manifest_version": 2
}