NoDogeTweeter
Revert the Doge logo and restore the original Twitter logo.
NoDogeTweeter란 무엇입니까?
NoDogeTweeter은(는) Blue Bird Back에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Revert the Doge logo and restore the original Twitter logo."입니다.
확장 프로그램 스크린샷
NoDogeTweeter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
NoDogeTweeter is a Chrome extension that reverts the 𝕏 logo back to the original Twitter logo and changes the favicon back to its original design. This extension is useful if you prefer the original Twitter aesthetics over the changes made by Elon Musk. Features + Automatically detects the 𝕏 logo on Twitter and replaces it with the original Twitter logo. + Reverts the favicon back to its original design. + Preserves the original HTML structure. Instructions for use: + Install the NoDogeTweeter extension from the Chrome Web Store. + Visit twitter.com or refresh any open Twitter pages (press F5) to see the original Twitter logo in the top left corner. + The extension icon will appear blue on Twitter and gray on other websites, showing that it only affects Twitter pages. Please note: This extension is not affiliated with or endorsed by Twitter, Inc.
확장 프로그램 기본 정보
이름 | NoDogeTweeter |
ID | afahecnmmidcbakdlhiedljihbgeonci |
공식 URL | https://chromewebstore.google.com/detail/nodogetweeter/afahecnmmidcbakdlhiedljihbgeonci |
설명 | Revert the Doge logo and restore the original Twitter logo. |
파일 크기 | 1.37 MB |
설치 횟수 | 80 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2023-07-25 |
출시 날짜 | 2023-04-08 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Blue Bird Back |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://bluebirdback.com/2023/08/03/bluebirdback-chrome-extension-privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "NoDogeTweeter", "version": "1.1.0", "description": "Revert the Doge logo and restore the original Twitter logo.", "permissions": [ "activeTab", "tabs" ], "action": { "default_popup": "", "default_icon": { "16": "assets\/twitter-16.png", "24": "assets\/twitter-24.png", "32": "assets\/twitter-32.png", "48": "assets\/twitter-48.png", "64": "assets\/twitter-64.png", "128": "assets\/twitter-128.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "assets\/twitter-16.png", "24": "assets\/twitter-24.png", "32": "assets\/twitter-32.png", "48": "assets\/twitter-48.png", "64": "assets\/twitter-64.png", "128": "assets\/twitter-128.png" } } |