twitter-view-count-remover
Ultra simple browser extension that removes view count from tweets.
twitter-view-count-remover क्या है?
twitter-view-count-remover Fernando de la Rosa द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Ultra simple browser extension that removes view count from tweets."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में twitter-view-count-remover एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Simple browser extension that removes view count from tweets. Easily remove view counts from tweets, no more comparing yourself to the Twitter elite, no more feeling like your tweets are falling into the abyss of the internet. Try it now! Source code is available at: https://github.com/jfdelarosa/twitter-view-count-remover CHANGELOG v1.3 - Fixed a bug that does not allow to open the more options menu in own tweets v1.2 - Added the possibility to show or hide the counter via a toggle v1.1 - Added support for mobile.twitter.com domain v1.0 - Initial release
एक्सटेंशन की मूल जानकारी
नाम | twitter-view-count-remover |
ID | kacedphpmelngnhgodfbnemedkbbiajj |
आधिकारिक URL | https://chromewebstore.google.com/detail/twitter-view-count-remove/kacedphpmelngnhgodfbnemedkbbiajj |
विवरण | Ultra simple browser extension that removes view count from tweets. |
फ़ाइल का आकार | 11.94 KB |
स्थापना संख्या | 1,485 |
वर्तमान संस्करण | 1.3.0 |
अंतिम अपडेट | 2023-01-05 |
प्रकाशन तिथि | 2022-12-24 |
रेटिंग | 4.70/5 कुल 23 रेटिंग्स |
डेवलपर | Fernando de la Rosa |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://twitter.com/jfdelarosa |
सहायता पृष्ठ URL | https://twitter.com/jfdelarosa |
गोपनीयता नीति पृष्ठ URL | https://www.lunanotes.io/privacy-policy |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "jfdelarosa", "content_scripts": [ { "matches": [ "https:\/\/*.twitter.com\/*" ], "css": [ "content.css" ], "js": [ "content.js" ], "run_at": "document_end" } ], "description": "Ultra simple browser extension that removes view count from tweets.", "manifest_version": 3, "name": "twitter-view-count-remover", "permissions": [ "storage", "tabs" ], "version": "1.3.0", "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icon-16.png", "24": "images\/icon-24.png", "32": "images\/icon-32.png" }, "default_popup": "popup.html" } } |