Selection Menu

Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)

Selection Menu란 무엇입니까?

Selection Menu은(는) mad1ost에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Selection Menu 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Select the text and click on one of the buttons in the pop-up menu (copy or search in Google (or other search engines)). See extension preferences to choose your own search engine.                    

확장 프로그램 기본 정보

이름 Selection Menu Selection Menu
ID oplmnnimmmpiofnckcojgkonjfajgfhl
공식 URL https://chromewebstore.google.com/detail/selection-menu/oplmnnimmmpiofnckcojgkonjfajgfhl
설명 Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)
파일 크기 14.32 KB
설치 횟수 51
현재 버전 3.1.0
최근 업데이트 2024-02-01
출시 날짜 2020-06-27
평점 5.00/5 총 3 개의 평점
개발자 mad1ost
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mad1ost/selection-menu
도움말 페이지 URL https://github.com/mad1ost/selection-menu/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Selection Menu",
    "version": "3.1.0",
    "description": "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)",
    "homepage_url": "https:\/\/github.com\/mad1ost\/selection-menu",
    "icons": {
        "32": "icons\/icon-32.png",
        "64": "icons\/icon-64.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "selection-menu.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "js": [
                "selection-menu-sub.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ]
}