m-wiki

Automatically redirects Wikipedia to the mobile version.

Vad är m-wiki?

m-wiki är en Chrome-tillägg utvecklad av Jathu Satkunarajah, och dess huvudfunktion är "Automatically redirects Wikipedia to the mobile version.".

Tilläggsskärmbilder

screenshot

Ladda ner m-wiki-förlängningens CRX-fil

Ladda ner m-wiki-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        The mobile version of Wikipedia looks beautiful. This extension automatically redirects Wikipedia to the mobile version. It also sets the font to "San Fransisco" for macOS users.                    

Grundläggande Information om Tillägg

Namn m-wiki m-wiki
ID ibnmikddaopgfbbngcgcfmanjfgbcopf
Officiell webbadress https://chromewebstore.google.com/detail/m-wiki/ibnmikddaopgfbbngcgcfmanjfgbcopf
Beskrivning Automatically redirects Wikipedia to the mobile version.
Filstorlek 994 KB
Antal Installationer 673
Aktuell Version 2.1
Senast Uppdaterad 2016-12-22
Publiceringsdatum 2016-12-22
Betyg 4.97/5 Totalt 29 Betyg
Utvecklare Jathu Satkunarajah
Betalningssätt free
Tilläggswebbplats https://github.com/jathu/m-wiki
Hjälpsida URL https://github.com/jathu/m-wiki
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "m-wiki",
    "description": "Automatically redirects Wikipedia to the mobile version.",
    "author": "Jathu Satkunarajah",
    "version": "2.1",
    "permissions": [
        "http:\/\/*.wikipedia.org\/wiki\/*",
        "https:\/\/*.wikipedia.org\/wiki\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*.wikipedia.org\/wiki\/*",
                "https:\/\/*.wikipedia.org\/wiki\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    }
}