Gmail Contacts

Adds a Google Contacts shortcut to the new Gmail interface

Vad är Gmail Contacts?

Gmail Contacts är en Chrome-tillägg utvecklad av http://zvizvi.xyz, och dess huvudfunktion är "Adds a Google Contacts shortcut to the new Gmail interface".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Gmail Contacts-förlängningens CRX-fil

Ladda ner Gmail Contacts-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

                        Adds a Google Contacts shortcut to the new Gmail interface                    

Grundläggande Information om Tillägg

Namn Gmail Contacts Gmail Contacts
ID jgakkffecofibnpbdkkphaminipefbjj
Officiell webbadress https://chrome.google.com/webstore/detail/gmail-contacts/jgakkffecofibnpbdkkphaminipefbjj
Beskrivning Adds a Google Contacts shortcut to the new Gmail interface
Filstorlek 94.91 KB
Antal Installationer 3,454
Aktuell Version 2.0.5
Senast Uppdaterad 2019-05-27
Publiceringsdatum 2019-05-27
Betyg 5.00/5 Totalt 5 Betyg
Utvecklare http://zvizvi.xyz
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://zvizvi.xyz/
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Contacts",
    "version": "2.0.5",
    "author": "[email protected]",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": "img\/icon16.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/drive.google.com\/*",
                "https:\/\/docs.google.com\/*",
                "https:\/\/calendar.google.com\/calendar\/*"
            ],
            "js": [
                "js\/jquery-1.11.3.min.js",
                "js\/main.js"
            ]
        }
    ],
    "icons": {
        "128": "img\/icon128.png",
        "96": "img\/icon96.png",
        "72": "img\/icon72.png",
        "64": "img\/icon64.png",
        "48": "img\/icon48.png",
        "24": "img\/icon24.png",
        "16": "img\/icon16.png"
    },
    "manifest_version": 2
}