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…
¿Qué es Notion Favicon Fixer?
Notion Favicon Fixer es una extensión de Chrome desarrollada por leo.thorp.dev, y su función principal es "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 Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Notion Favicon Fixer
Descarga archivos de extensión Notion Favicon Fixer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Notion Favicon Fixer |
ID | dhgfaokfhhiondfknlnfojhfebgpfeai |
URL Oficial | https://chromewebstore.google.com/detail/notion-favicon-fixer/dhgfaokfhhiondfknlnfojhfebgpfeai |
Descripción | 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… |
Tamaño del Archivo | 5.87 KB |
Cantidad de Instalaciones | 475 |
Versión Actual | 1.0 |
Última Actualización | 2021-10-06 |
Fecha de Publicación | 2021-09-30 |
Calificación | 5.00/5 Total de 7 Calificaciones |
Desarrollador | leo.thorp.dev |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } ] } |