TweetBlock
Block specific tweets from appearing on your timeline without blocking the user creating them.
TweetBlock क्या है?
TweetBlock https://blackle-mori.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Block specific tweets from appearing on your timeline without blocking the user creating them."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TweetBlock एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
TweetBlock is a chrome extension to block specific tweets from appearing on your timeline, without blocking the user creating them. There are a few reasons why this little feature would be useful: - There is a very popular tweet everyone in your feed is retweeting that you just don't want to see. - There's an untagged tweet that makes you very uncomfortable. - Your very good friend is in a odd meme mood and is posting pictures of lewd minions every 30 seconds and you're at work. Once installed TweetBlock will add a small "X" button on each tweet which will allow you to block it. Blocked tweets appear in a collapsed state that can be expanded with the "toggle visibility" button. Tweets can be unblocked by re-clicking the "X" or visiting the options page, where a list of all blocked tweets can be viewed. This extension is currently in very-beta release. If you find a bug please report it to the github repo (set as the webpage for this extension.) Happy blocking!
एक्सटेंशन की मूल जानकारी
नाम | TweetBlock |
ID | emgeioodbdkocgffmnfdhjldnefeikeb |
आधिकारिक URL | https://chromewebstore.google.com/detail/tweetblock/emgeioodbdkocgffmnfdhjldnefeikeb |
विवरण | Block specific tweets from appearing on your timeline without blocking the user creating them. |
फ़ाइल का आकार | 769 KB |
स्थापना संख्या | 38 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2016-06-10 |
प्रकाशन तिथि | 2016-06-09 |
रेटिंग | 4.33/5 कुल 3 रेटिंग्स |
डेवलपर | https://blackle-mori.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/blackle/TweetBlock |
सहायता पृष्ठ URL | https://github.com/blackle/TweetBlock/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TweetBlock", "description": "Block specific tweets from appearing on your timeline without blocking the user creating them.", "version": "1.0.0", "options_page": "options\/options.html", "browser_action": { "default_icon": "img\/icon.png", "default_popup": "popup\/popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.twitter.com\/*", "*:\/\/twitter.com\/*" ], "css": [ "sitecontent\/twitter.css" ], "js": [ "commonjs\/blocked_tweet_db.js", "sitecontent\/twitter.js" ], "run_at": "document_start" } ], "permissions": [ "storage", "https:\/\/platform.twitter.com\/*" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_security_policy": "script-src 'self' https:\/\/platform.twitter.com\/ https:\/\/syndication.twitter.com\/; object-src 'self'" } |