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…
O que é Notion Favicon Fixer?
Notion Favicon Fixer é uma extensão do Chrome desenvolvida por leo.thorp.dev, e sua principal característica é "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…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Notion Favicon Fixer
Baixe arquivos de extensão Notion Favicon Fixer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Notion Favicon Fixer |
ID | dhgfaokfhhiondfknlnfojhfebgpfeai |
URL Oficial | https://chromewebstore.google.com/detail/notion-favicon-fixer/dhgfaokfhhiondfknlnfojhfebgpfeai |
Descrição | 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… |
Tamanho do Arquivo | 5.87 KB |
Contagem de Instalações | 475 |
Versão Atual | 1.0 |
Última Atualização | 2021-10-06 |
Data de Publicação | 2021-09-30 |
Classificação | 5.00/5 Total de 7 Avaliações |
Desenvolvedor | leo.thorp.dev |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |