Notion Favicon Fixer

TLDR: This forces the tab icon on Notion pages to always remain as the Notion logo. Notion pages have a feature where the page's…

Τι είναι το Notion Favicon Fixer;

Το Notion Favicon Fixer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον leo.thorp.dev, και η κύρια λειτουργία του είναι "TLDR: This forces the tab icon on Notion pages to always remain as the Notion logo. Notion pages have a feature where the page's…".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Notion Favicon Fixer

Λήψη αρχείων επέκτασης Notion Favicon Fixer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        TLDR: This forces the tab icon on Notion pages to always remain as the Notion logo.

Notion pages have a feature where the page's favicon changes to match whatever custom icon is on the page. But If you are switching around between many other open tabs, that makes it hard to find the Notion tab again. Once installed, this extension simply prevents the favicon from changing whenever you are viewing a Notion page, making open Notion tabs easier to find at a glance.

Source code: https://github.com/leothorp/notion-favicon-fixer                    

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

Όνομα Notion Favicon Fixer Notion Favicon Fixer
ID dhgfaokfhhiondfknlnfojhfebgpfeai
Επίσημο URL https://chromewebstore.google.com/detail/notion-favicon-fixer/dhgfaokfhhiondfknlnfojhfebgpfeai
Περιγραφή TLDR: This forces the tab icon on Notion pages to always remain as the Notion logo. Notion pages have a feature where the page's…
Μέγεθος Αρχείου 5.87 KB
Αριθμός Εγκαταστάσεων 475
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2021-10-06
Ημερομηνία Δημοσίευσης 2021-09-30
Αξιολόγηση 5.00/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής leo.thorp.dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Notion Favicon Fixer",
    "version": "1.0",
    "icons": {
        "128": "icon.jpeg"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/notion.so\/*",
                "https:\/\/www.notion.so\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}