Demobilizer

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

Τι είναι το Demobilizer;

Το Demobilizer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 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 της επέκτασης Demobilizer

Λήψη αρχείων επέκτασης Demobilizer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
            ]
        }
    ]
}