Demobilizer

This extension will direct a user to the non-mobile version of a website if they are on the mobile version.

Demobilizer क्या है?

Demobilizer johnalexcasey द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will direct a user to the non-mobile version of a website if they are on the mobile version."।

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

screenshot
screenshot

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

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

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

                        This extension will direct a user to the non-mobile version of a website if they are on the mobile version of said website. It is specifically geared towards the mobile Wikipedia and Reddit website, though I will try to update it to work with others.                    

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

नाम Demobilizer Demobilizer
ID kmbnmnjepplgbockdkjibpdgfikklioh
आधिकारिक URL https://chromewebstore.google.com/detail/demobilizer/kmbnmnjepplgbockdkjibpdgfikklioh
विवरण This extension will direct a user to the non-mobile version of a website if they are on the mobile version.
फ़ाइल का आकार 18.01 KB
स्थापना संख्या 38
वर्तमान संस्करण 0.0.4
अंतिम अपडेट 2016-10-02
प्रकाशन तिथि 2016-10-02
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर johnalexcasey
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Demobilizer",
    "description": "This extension will direct a user to the non-mobile version of a website if they are on the mobile version.",
    "version": "0.0.4",
    "browser_action": {
        "default_icon": {
            "19": "icon.png",
            "38": "icon.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}