Emojitab - Emoji Tab Favicon Icons [Beta]

Replace the favicon icon of a chrome tab with custom emoji – so you can finally tell your tabs apart.

Τι είναι το Emojitab - Emoji Tab Favicon Icons [Beta];

Το Emojitab - Emoji Tab Favicon Icons [Beta] είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Emoji Tab App, και η κύρια λειτουργία του είναι "Replace the favicon icon of a chrome tab with custom emoji – so you can finally tell your tabs apart.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Emojitab - Emoji Tab Favicon Icons [Beta]

Λήψη αρχείων επέκτασης Emojitab - Emoji Tab Favicon Icons [Beta] σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Emojitab lets you set custom emoji favicons for your chrome tabs, so tabs with the same icon are easy to tell apart at a glance. 

**POPULAR EXAMPLES**

- Making individual Google Docs, Sheets, or Slides documents have unique emoji 
- Setting emoji for individual Figma files
- Setting different emoji for software engineering "dev," "staging," "local," "docs," or "prod" instances without needing to build that yourself 

**BETA** 

This extension is in Beta and we would love your feedback or feature requests at [email protected] . If you find any bugs or websites not supported, please email [email protected] . 

We may at some point charge a small amount to cover the cost of ongoing support, but we'll give all beta users a full year of free usage if we do so.

**PERMISSIONS**

On installation, this chrome extension asks for a number of permissions because we need to be able to modify the pages you visit in order to attach the emoji tab icons. 

We ask for and need: 

- storage permissions to save your icons 
- activeTab permissions to populate the extension popup when you open the extension
- host/content script permissions ("modify web pages you visit") so we can modify web pages in order to replace the tab icon encoded on the page with your custom icon 
- scripting and tabs permissions in order to "run once" on pages you have already loaded when you first install the extension, so you don't have to refresh all your many tabs (because if you forget to refresh, it appears broken) 

**MINIMAL TRACKING**

This extension does not track any personal information, does not track the sites you visit, and does not track any custom text you might input to the fields on the extension. 

We do track a few generic and anonymous events, in order to understand if people are using this extension and we should continue to support it. Specifically: 

- We track an "event" when you set an icon or when you delete it
- We track an "event" when you load a page with a previously-set icon (but we *do not* track the url or title or any info about that page you loaded, just a generic "icon loaded" event)

For these events, we track what the icon is *only if* the icon is an emoji. If it's a custom string we only track the length of the string in characters, so that your custom inputs remain fully private. 

We use Plausible (https://plausible.io/) for analytics because it's especially privacy-conscious and uses no tracking cookies.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Emojitab - Emoji Tab Favicon Icons [Beta] Emojitab - Emoji Tab Favicon Icons [Beta]
ID mnciblcffhckcaalpmhjelkjgjoahehp
Επίσημο URL https://chromewebstore.google.com/detail/emojitab-emoji-tab-favico/mnciblcffhckcaalpmhjelkjgjoahehp
Περιγραφή Replace the favicon icon of a chrome tab with custom emoji – so you can finally tell your tabs apart.
Μέγεθος Αρχείου 72.23 KB
Αριθμός Εγκαταστάσεων 109
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2021-10-21
Ημερομηνία Δημοσίευσης 2021-10-21
Προγραμματιστής Emoji Tab App
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Emojitab - Emoji Tab Favicon Icons [Beta]",
    "version": "1.0",
    "description": "Replace the favicon icon of a chrome tab with custom emoji \u2013\u00a0so you can finally tell your tabs apart.",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "utils.js",
                "contentScript.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icon16.png",
            "32": "\/images\/icon32.png",
            "48": "\/images\/icon48.png",
            "128": "\/images\/icon128.png"
        }
    },
    "icons": {
        "16": "\/images\/icon16.png",
        "32": "\/images\/icon32.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/src_logo.svg",
                "\/plausible.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}