Twitter Cleaner

Removes annoying twitter boxes

Twitter Cleaner क्या है?

Twitter Cleaner https://cavar.net द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Removes annoying twitter boxes"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitter Cleaner एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Removes trending, who to follow and footer boxes.
Report any issues here https://github.com/Palethorn/twitter_cleaner/issues                    

एक्सटेंशन की मूल जानकारी

नाम Twitter Cleaner Twitter Cleaner
ID oocpmdgjlccdinophpbbkmfdjooflfac
आधिकारिक URL https://chrome.google.com/webstore/detail/twitter-cleaner/oocpmdgjlccdinophpbbkmfdjooflfac
विवरण Removes annoying twitter boxes
फ़ाइल का आकार 92.48 KB
स्थापना संख्या 50
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2019-11-21
प्रकाशन तिथि 2019-11-21
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://cavar.net
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Palethorn/twitter_cleaner
सहायता पृष्ठ URL https://github.com/Palethorn/twitter_cleaner/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Cleaner",
    "version": "2.0.0",
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "description": "Removes annoying twitter boxes",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "menu.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}