Social Muter
An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords.
Social Muter क्या है?
Social Muter https://socialmuter.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Social Muter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Tired of weekly spoilers showing up on your Twitter Timeline? Or perhaps, you're tired of seeing a certain hashtag or topic being discussed. With Social Muter, you can filter out all of that noise from your timeline and show only content that you really want to see, when you want to see it.
एक्सटेंशन की मूल जानकारी
नाम | Social Muter |
ID | pipnnaljhbijgcfmcihmmjmpnmhhljhp |
आधिकारिक URL | https://chromewebstore.google.com/detail/social-muter/pipnnaljhbijgcfmcihmmjmpnmhhljhp |
विवरण | An extension for easily removing or hiding tweets in your timeline with a certain hashtag or keywords. |
फ़ाइल का आकार | 107 KB |
स्थापना संख्या | 24 |
वर्तमान संस्करण | 0.0.1 |
अंतिम अपडेट | 2016-12-18 |
प्रकाशन तिथि | 2016-12-17 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | https://socialmuter.com |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "version": "0.0.1", "description": "__MSG_extDescription__", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "storage", "*:\/\/twitter.com\/*" ], "browser_action": { "default_icon": { "19": "icon-19.png", "38": "icon-38.png" }, "default_title": "__MSG_extName__", "default_popup": "popup.html" }, "omnibox": { "keyword": "Twitter Muter" }, "content_scripts": [ { "matches": [ "http:\/\/twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": false } ] } |