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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Block media (image, GIF and video) previews on your Twitter timeline. Perfect for avoiding those pesky spoilers!!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitter Media Preview Blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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!
एक्सटेंशन की मूल जानकारी
नाम | |
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" } } |