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은(는) leo.thorp.dev에 의해 개발된 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…"입니다.
확장 프로그램 스크린샷
Notion Favicon Fixer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" ] } ] } |