TwitterBird
Changes the "X" brand back to Twitter
TwitterBird란 무엇입니까?
TwitterBird은(는) https://labystudio.de에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Changes the "X" brand back to Twitter"입니다.
확장 프로그램 스크린샷
TwitterBird 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This add-on reverts all logos of the Twitter/X website back to the Twitter bird. It changes every single X logo, including the icon in the browser tab, the logout screen, and the boot screen. Additionally, it modifies the avatar, banner, name, handle and badge of the official Twitter accounts. Please be aware that Twitter is currently changing its website every day. I'm trying to keep the add-on up to date with the latest changes Elon Musk is making to Twitter/X.
확장 프로그램 기본 정보
이름 | TwitterBird |
ID | cglkhpbplnpobkhgecadnemehdaphahh |
공식 URL | https://chromewebstore.google.com/detail/twitterbird/cglkhpbplnpobkhgecadnemehdaphahh |
설명 | Changes the "X" brand back to Twitter |
파일 크기 | 1.72 MB |
설치 횟수 | 213 |
현재 버전 | 1.2 |
최근 업데이트 | 2023-07-27 |
출시 날짜 | 2023-07-25 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | https://labystudio.de |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TwitterBird", "description": "Changes the \"X\" brand back to Twitter", "short_name": "TwitterBird", "manifest_version": 3, "version": "1.2", "icons": { "16": "assets\/icon\/icon16.png", "164": "assets\/icon\/icon164.png" }, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*", "https:\/\/*.x.com\/*" ], "js": [ "js\/Injector.js", "js\/controllers\/SvgLogoInjector.js", "js\/controllers\/FaviconInjector.js", "js\/controllers\/TwitterAccountInjector.js", "js\/controllers\/TitleInjector.js", "js\/TwitterBird.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "assets\/*" ], "matches": [ "https:\/\/*.twitter.com\/*", "https:\/\/*.x.com\/*" ] } ] } |