Wikipedia Anywhere

Access to a floating mobile version of Wikipedia on any webpage

Wikipedia Anywhere란 무엇입니까?

Wikipedia Anywhere은(는) rynu.smith에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Access to a floating mobile version of Wikipedia on any webpage"입니다.

확장 프로그램 스크린샷

screenshot

Wikipedia Anywhere 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension brings the mobile version of Wikipedia to any website to lookup terms without leaving the page. The extension has no visual button. To activate, select a text on the active tab and press the "W" icon that appears on top of the mouse pointer. To hide the panel, select anywhere outside the mini Wikipedia panel.

Use cases:
Look at the meaning of a technical term without leaving the panel.
Get more info about a topic with an embedded Wikipedia 
Find a song track details right inside an online media player (YouTube Music or Spotify)
Get technical review about a movie without leaving IMDB

Notes:
1. To improve the loading speed, the mobile version of Wikipedia is used. You can change this from the options page.
2. The size of the panel as well as the bubble's position is customizable. 
3. If you prefer a localized version of Wikipedia, change the default "en" locale ( the language of the loaded Wikipedia page) from the options page.                    

확장 프로그램 기본 정보

이름 Wikipedia Anywhere Wikipedia Anywhere
ID gnihphapfnoidhmgooeembehjfmnphki
공식 URL https://chromewebstore.google.com/detail/wikipedia-anywhere/gnihphapfnoidhmgooeembehjfmnphki
설명 Access to a floating mobile version of Wikipedia on any webpage
파일 크기 32.09 KB
설치 횟수 429
현재 버전 0.2.0
최근 업데이트 2021-07-18
출시 날짜 2017-08-22
평점 3.89/5 총 9 개의 평점
개발자 rynu.smith
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://add0n.com/page-anywhere.html?from=wikipedia
도움말 페이지 URL https://add0n.com/page-anywhere.html?from=wikipedia
개인정보 보호 정책 페이지 URL https://add0n.com/policies/rynu.smith.txt
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wikipedia Anywhere",
    "description": "Access to a floating mobile version of Wikipedia on any webpage",
    "version": "0.2.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "data\/icons\/32.png",
                "data\/icons\/loading.svg"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.m.wikipedia.org\/*"
            ],
            "js": [
                "data\/inject\/inject.js"
            ],
            "css": [
                "data\/inject\/inject.css"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "homepage_url": "https:\/\/add0n.com\/page-anywhere.html?from=wikipedia",
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png"
    },
    "options_ui": {
        "page": "data\/options\/index.html"
    }
}