Bring the Twitter Bird Back

A simple Chrome extension to bring the Twitter bird everyone loves back to the Twitter website.

Bring the Twitter Bird Back란 무엇입니까?

Bring the Twitter Bird Back은(는) y4nci에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple Chrome extension to bring the Twitter bird everyone loves back to the Twitter website."입니다.

확장 프로그램 스크린샷

screenshot

Bring the Twitter Bird Back 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        We all miss the iconic Twitter bird right? Here is an extension for you to bring the bird back. The only thing you need to do is to install the extension and let it do its job!

If you have any issues, or something's broken, you can open an issue here: https://github.com/y4nci/bring-twitter-bird-back/issues.

Special thanks to my sponsors, Görkem and Murat for their support.                    

확장 프로그램 기본 정보

이름 Bring the Twitter Bird Back Bring the Twitter Bird Back
ID digdceeidmgbnjlmgjjcnndacaaobfgk
공식 URL https://chromewebstore.google.com/detail/bring-the-twitter-bird-ba/digdceeidmgbnjlmgjjcnndacaaobfgk
설명 A simple Chrome extension to bring the Twitter bird everyone loves back to the Twitter website.
파일 크기 18.82 KB
설치 횟수 288
현재 버전 0.2
최근 업데이트 2023-08-29
출시 날짜 2023-08-04
평점 5.00/5 총 1 개의 평점
개발자 y4nci
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bring the Twitter Bird Back",
    "version": "0.2",
    "author": "Baran Yanc\u0131",
    "description": "A simple Chrome extension to bring the Twitter bird everyone loves back to the Twitter website.",
    "host_permissions": [
        "*:\/\/*.twitter.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/*"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "scripting",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/icons\/light16.png",
            "32": "images\/icons\/light32.png"
        },
        "default_title": "Bring the Twitter Bird Back",
        "theme_icons": [
            {
                "light": "images\/icons\/light16.png",
                "dark": "images\/icons\/dark16.png",
                "size": 16
            },
            {
                "light": "images\/icons\/light32.png",
                "dark": "images\/icons\/dark32.png",
                "size": 32
            }
        ]
    }
}