Remove Retweets
An Extension for removing retweets of given users on twitter.com
Remove Retweets क्या है?
Remove Retweets oiva.eskola द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An Extension for removing retweets of given users on twitter.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Remove Retweets एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Follow someone on Twitter because you like them but hate everything they retweet? Then this is the extension for you. This extension will let you specify Twitter users whose retweets you don't want to see. Their retweets will then be filtered from the main timeline and their user pages. Follow people for what they tweet, not what they retweet!
एक्सटेंशन की मूल जानकारी
नाम | |
ID | kpdjjfkdanbalgbghgmpiepnjkpokfoc |
आधिकारिक URL | https://chrome.google.com/webstore/detail/remove-retweets/kpdjjfkdanbalgbghgmpiepnjkpokfoc |
विवरण | An Extension for removing retweets of given users on twitter.com |
फ़ाइल का आकार | 103 KB |
स्थापना संख्या | 238 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2013-11-20 |
प्रकाशन तिथि | 2013-11-20 |
रेटिंग | 2.36/5 कुल 11 रेटिंग्स |
डेवलपर | oiva.eskola |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Retweets", "description": "An Extension for removing retweets of given users on twitter.com", "version": "1.0", "permissions": [ "https:\/\/twitter.com\/", "storage", "activeTab" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": { "19": "img\/icon48.png", "38": "img\/icon48.png" }, "default_popup": "popup.html" }, "content_security_policy": "script-src 'self'; object-src 'self'", "web_accessible_resources": [ "img\/icon128.png", "js\/underscore-1.5.2.min.map" ], "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*" ], "js": [ "js\/underscore-1.5.2.min.js", "js\/content.js" ], "run_at": "document_end" } ] } |