No Media
Block media on TweetDeck and Twitter for efficiency.
What is No Media?
No Media is a Chrome extension developed by http://slogansocial.com, and its main feature is "Block media on TweetDeck and Twitter for efficiency.".
Extension Screenshots
Download No Media Extension CRX File
Download No Media extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Prevent both Twitter and TweetDeck lag by blocking all tweet media! Helpful for power users, especially with large decks. Toggle on/off by clicking the icon.
Extension Basic Information
Name | |
ID | hmakfnlifmjjhdjkopeabkfpabhgfajl |
Official URL | https://chrome.google.com/webstore/detail/no-media/hmakfnlifmjjhdjkopeabkfpabhgfajl |
Description | Block media on TweetDeck and Twitter for efficiency. |
File Size | 39.64 KB |
Installation Count | 12 |
Current Version | 1.0 |
Last Updated | 2017-10-04 |
Publish Date | 2017-10-04 |
Rating | 4.50/5 Total 2 Ratings |
Developer | http://slogansocial.com |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "No Media", "description": "Block media on TweetDeck and Twitter for efficiency.", "version": "1.0", "permissions": [ "storage" ], "browser_action": { "default_icon": "iconoff.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/tweetdeck.twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ] } ] } |