Twitter Media Preview Blocker

Block media (image, GIF and video) previews on your Twitter timeline. Perfect for avoiding those pesky spoilers!!

Twitter Media Preview Blocker란 무엇입니까?

Twitter Media Preview Blocker은(는) Project Kenneth에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block media (image, GIF and video) previews on your Twitter timeline. Perfect for avoiding those pesky spoilers!!"입니다.

확장 프로그램 스크린샷

screenshot

Twitter Media Preview Blocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Want to hide media previews on Twitter to avoid seeing unexpected and unwanted images, GIFs, or videos on your timeline?

Want to avoid getting spoiled on Twitter?

Then this is the perfect Chrome extension for you!

Once enabled, you will no longer see actual media previews on your Twitter timeline. If you are 100% sure you want to view the media, just click on the tweet and you'll be able to do so.

All of this in one click.

So, what are you waiting for? Download Twitter Media Preview Blocker now!                    

확장 프로그램 기본 정보

이름 Twitter Media Preview Blocker Twitter Media Preview Blocker
ID lnpiebfnimnnljdcjoffaidebpkpnknn
공식 URL https://chromewebstore.google.com/detail/twitter-media-preview-blo/lnpiebfnimnnljdcjoffaidebpkpnknn
설명 Block media (image, GIF and video) previews on your Twitter timeline. Perfect for avoiding those pesky spoilers!!
파일 크기 33.13 KB
설치 횟수 80
현재 버전 0.0.1
최근 업데이트 2022-05-04
출시 날짜 2022-05-04
평점 4.50/5 총 2 개의 평점
개발자 Project Kenneth
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Media Preview Blocker",
    "description": "Block media (image, GIF and video) previews on your Twitter timeline. Perfect for avoiding those pesky spoilers!!",
    "version": "0.0.1",
    "author": "Movies Mixed Up",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "inject\/tmpb-main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/placeholder.png"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_title": "Twitter Media Preview Block Options",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    }
}