Wikipedia Mobile View Redirect
Redirects all Wikipedia pages to the mobile layout, which is much easier to read.
什么是Wikipedia Mobile View Redirect?
Wikipedia Mobile View Redirect是由https://www.100yen.co.uk开发的Chrome扩展程序,该扩展的主要功能是“Redirects all Wikipedia pages to the mobile layout, which is much easier to read.”。
扩展截图
下载Wikipedia Mobile View Redirect扩展crx文件
下载Wikipedia Mobile View Redirect扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | kmgndcpedgaibepohbjhdgcgkjplffip |
| 官方URL | https://chromewebstore.google.com/detail/wikipedia-mobile-view-red/kmgndcpedgaibepohbjhdgcgkjplffip |
| 简介 | Redirects all Wikipedia pages to the mobile layout, which is much easier to read. |
| 文件大小 | 10.18 KB |
| 安装次数 | 188 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2015-03-18 |
| 上架时间 | 2015-03-18 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | https://www.100yen.co.uk |
| 付费类型 | free |
| 支持的语言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Wikipedia Mobile View Redirect",
"version": "1.0.0",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"manifest_version": 2,
"description": "Redirects all Wikipedia pages to the mobile layout, which is much easier to read.",
"content_scripts": [
{
"matches": [
"*:\/\/*.wikipedia.org\/*"
],
"exclude_matches": [
"*:\/\/*.m.wikipedia.org\/*"
],
"js": [
"script.js"
],
"run_at": "document_start"
}
]
} | |