Wikipedia Popup

Wikipedia popup for selected text

Wikipedia Popup란 무엇입니까?

Wikipedia Popup은(는) David에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Wikipedia popup for selected text"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Select some text on a webpage and press Alt+W to quickly view the Wikipedia entry for your selection.

𝐅𝐞𝐚𝐭𝐮𝐫𝐞𝐬:
• Customizable default popup panel size (Click extension icon to configure).
• Does not clutter history.
• Uses mobile version of Wikipedia for enhanced readability.
• Syncs settings across Chrome browsers with your account.
• Context menu option for when you're tired of spamming hotkeys.
• Supports over 300 languages of Wikipedia.

To change the default hotkey, click on the extension icon and click the 'Configure hotkey' button.

source code:
https://github.com/D4D3VD4V3/wikipedia-popup-chrome-extension                    

확장 프로그램 기본 정보

이름 Wikipedia Popup Wikipedia Popup
ID cleeghampfhpphpmcjimpmcamadmmilm
공식 URL https://chromewebstore.google.com/detail/wikipedia-popup/cleeghampfhpphpmcjimpmcamadmmilm
설명 Wikipedia popup for selected text
파일 크기 12.51 KB
설치 횟수 312
현재 버전 1.3.37
최근 업데이트 2022-02-08
출시 날짜 2019-01-19
평점 5.00/5 총 6 개의 평점
개발자 David
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/D4D3VD4V3/wikipedia-popup-chrome-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wikipedia Popup",
    "version": "1.3.37",
    "description": "Wikipedia popup for selected text",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage",
        "contextMenus"
    ],
    "commands": {
        "selected-text": {
            "suggested_key": {
                "default": "Alt+W"
            },
            "description": "Invoke Wikipedia Popup"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Wikipedia Popup (Select a word and hit Alt+W)",
        "default_popup": "settings.html"
    },
    "icons": {
        "16": "icon\/wikipedia-logo-16.png",
        "128": "icon\/wikipedia-logo-128.png"
    }
}