Redirect to mobile site for Wikimedia pages
When you visit the desktop version of a Wikimedia page, you will be taken to the mobile-optimised page instead
Redirect to mobile site for Wikimedia pages란 무엇입니까?
Redirect to mobile site for Wikimedia pages은(는) https://beingmrkenny.co.uk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "When you visit the desktop version of a Wikimedia page, you will be taken to the mobile-optimised page instead"입니다.
확장 프로그램 스크린샷
Redirect to mobile site for Wikimedia pages 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The mobile-optimised pages of Wikimedia sites are often easier to read than the desktop version. With this extension, when you visit the desktop version of a Wikipedia or Wiktionary article (or any article on a Wikimedia site), you will be taken to the mobile-optimised version of that page instead. For example, if you visit https://en.wikipedia.org/wiki/Photosynthesis you will be taken to https://en.m.wikipedia.org/wiki/Photosynthesis. If you visit https://en.wiktionary.org/wiki/botany you will be taken to https://en.m.wiktionary.org/wiki/botany. The exception to this is if you are editing an article. In that case you will be taken to the desktop version of the site, which you may find easier to use and more fully-featured when editing. You can control this extension with the toolbar menu, which allows you to switch it on or off, and whether it should take you to the desktop version to edit an article. If you would like to see the code that powers this extension, please see the GitHub repository here: https://github.com/beingmrkenny/WikimediaRedirect
확장 프로그램 기본 정보
이름 | Redirect to mobile site for Wikimedia pages |
ID | pbphdieomeafocdjodmhjnkjjoloiebj |
공식 URL | https://chromewebstore.google.com/detail/redirect-to-mobile-site-f/pbphdieomeafocdjodmhjnkjjoloiebj |
설명 | When you visit the desktop version of a Wikimedia page, you will be taken to the mobile-optimised page instead |
파일 크기 | 15.08 KB |
설치 횟수 | 71 |
현재 버전 | 1.3.5 |
최근 업데이트 | 2023-12-14 |
출시 날짜 | 2020-05-01 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | https://beingmrkenny.co.uk |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://beingmrkenny.co.uk/web-extensions/wikimedia-mobile-redirect |
도움말 페이지 URL | https://beingmrkenny.co.uk/web-extensions/wikimedia-mobile-redirect |
개인정보 보호 정책 페이지 URL | https://beingmrkenny.co.uk/web-extensions/wikimedia-mobile-redirect |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Redirect to mobile site for Wikimedia pages", "short_name": "Wikimedia Mobile Redirect", "description": "When you visit the desktop version of a Wikimedia page, you will be taken to the mobile-optimised page instead", "author": "Mark Kenny", "homepage_url": "https:\/\/beingmrkenny.co.uk\/web-extensions\/wikimedia-mobile-redirect", "version": "1.3.5", "icons": { "16": "img\/16.png", "48": "img\/48.png", "128": "img\/128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "include_globs": [ "http:\/\/*.wikibooks.org\/*", "http:\/\/*.wikidata.org\/*", "http:\/\/*.wikimedia.org\/*", "http:\/\/*.wikinews.org\/*", "http:\/\/*.wikipedia.org\/*", "http:\/\/*.wikiquote.org\/*", "http:\/\/*.wikisource.org\/*", "http:\/\/*.wikiversity.org\/*", "http:\/\/*.wikivoyage.org\/*", "http:\/\/*.wiktionary.org\/*", "https:\/\/*.wikibooks.org\/*", "https:\/\/*.wikidata.org\/*", "https:\/\/*.wikimedia.org\/*", "https:\/\/*.wikinews.org\/*", "https:\/\/*.wikipedia.org\/*", "https:\/\/*.wikiquote.org\/*", "https:\/\/*.wikisource.org\/*", "https:\/\/*.wikiversity.org\/*", "https:\/\/*.wikivoyage.org\/*", "https:\/\/*.wiktionary.org\/*" ], "js": [ "URLProcessor.js", "script.js" ], "matches": [ "http:\/\/*.wikibooks.org\/*", "http:\/\/*.wikidata.org\/*", "http:\/\/*.wikimedia.org\/*", "http:\/\/*.wikinews.org\/*", "http:\/\/*.wikipedia.org\/*", "http:\/\/*.wikiquote.org\/*", "http:\/\/*.wikisource.org\/*", "http:\/\/*.wikiversity.org\/*", "http:\/\/*.wikivoyage.org\/*", "http:\/\/*.wiktionary.org\/*", "https:\/\/*.wikibooks.org\/*", "https:\/\/*.wikidata.org\/*", "https:\/\/*.wikimedia.org\/*", "https:\/\/*.wikinews.org\/*", "https:\/\/*.wikipedia.org\/*", "https:\/\/*.wikiquote.org\/*", "https:\/\/*.wikisource.org\/*", "https:\/\/*.wikiversity.org\/*", "https:\/\/*.wikivoyage.org\/*", "https:\/\/*.wiktionary.org\/*" ], "run_at": "document_start" } ], "action": { "default_title": "Redirect to mobile site for Wikimedia pages", "default_popup": "popup.html", "default_icon": "img\/buttonIcon.png" } } |