Favicon Fixer for Gmail

Replace Gmail (or Inbox) favicon with favicon from mail domain.

Vad är Favicon Fixer for Gmail?

Favicon Fixer for Gmail är en Chrome-tillägg utvecklad av http://swtch.com, och dess huvudfunktion är "Replace Gmail (or Inbox) favicon with favicon from mail domain.".

Tilläggsskärmbilder

screenshot

Ladda ner Favicon Fixer for Gmail-förlängningens CRX-fil

Ladda ner Favicon Fixer for Gmail-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

                        When reading Gmail for foo.com, use foo.com's favicon instead of the Gmail envelope.

New in version 1.2:
  - Support for Inbox by Gmail (requires new permission for inbox.google.com).
  - Favicons are now loaded over HTTPS, not HTTP.                    

Grundläggande Information om Tillägg

Namn Favicon Fixer for Gmail Favicon Fixer for Gmail
ID ihedkldgihenfokcghdjimooiefgmjig
Officiell webbadress https://chrome.google.com/webstore/detail/favicon-fixer-for-gmail/ihedkldgihenfokcghdjimooiefgmjig
Beskrivning Replace Gmail (or Inbox) favicon with favicon from mail domain.
Filstorlek 3.07 KB
Antal Installationer 36
Aktuell Version 1.2
Senast Uppdaterad 2016-03-17
Publiceringsdatum 2016-03-17
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare http://swtch.com
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Favicon Fixer for Gmail",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Replace Gmail (or Inbox) favicon with favicon from mail domain.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "fix-icon.js"
            ]
        }
    ]
}