Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "wikipedia-mobile-to-web",
"description": "Changes mobile wikipedia links to the web version.",
"author": "FLC++",
"version": "1.0",
"host_permissions": [
"http:\/\/*.m.wikipedia.org\/wiki\/*",
"https:\/\/*.m.wikipedia.org\/wiki\/*"
],
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"http:\/\/*.m.wikipedia.org\/wiki\/*",
"https:\/\/*.m.wikipedia.org\/wiki\/*"
],
"js": [
"script.js"
]
}
],
"icons": {
"16": "img\/icon_16.png",
"32": "img\/icon_32.png",
"48": "img\/icon_48.png",
"128": "img\/icon_128.png"
},
"action": {
"default_popup": "index.html"
}
}