Selecton — selection popup. Copy and search

Customizable popup with actions on text selection

Selecton — selection popup. Copy and search란 무엇입니까?

Selecton — selection popup. Copy and search은(는) emvaized에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customizable popup with actions on text selection"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Selecton — selection popup. Copy and search 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        * Copy or search any text in one click, just like in Opera browser. Especially useful for laptops
* Currency converter (supports 30+ currencies and 10+ crypto currencies)
* Basic units converter (metric/imperial) and timezones conversion
* Contextual buttons depending on selected text, such as 'Open link', 'Translate', 'Show on map', CSS color preview and more 
* Smart selection feature - automatic snapping by words, so you'll never lose that last letter again
* Customizable appearance for the tooltip, and ability to set custom selection color
* Selection handles, which allow to quickly edit text selection
* Live translation of the selected text on hovering the "Translate" button
* Dictionary button, which fetches definition from Wikipedia on hover
* Highlighter button, which allows to highlight specific text on page and quickly find it later
* Instant word and symbols count in text selection
...and much more

Selecton does not collect, store or share any personal data, and will always remain open-source as a guarantee of it. If you want to financially support the project, you can find the Ko-Fi link on GitHub page or in extension options.                    

확장 프로그램 기본 정보

이름 Selecton — selection popup. Copy and search Selecton — selection popup. Copy and search
ID pemdbnndbdpbelmfcddaihdihdfmnadi
공식 URL https://chromewebstore.google.com/detail/selecton-%E2%80%94-selection-popu/pemdbnndbdpbelmfcddaihdihdfmnadi
설명 Customizable popup with actions on text selection
파일 크기 184 KB
설치 횟수 2,287
현재 버전 3.7.0
최근 업데이트 2024-02-05
출시 날짜 2021-02-18
평점 4.88/5 총 68 개의 평점
개발자 emvaized
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/emvaized/selecton-extension/
개인정보 보호 정책 페이지 URL https://github.com/emvaized/selecton-extension/blob/master/PRIVACY.md
지원되는 언어 de,en,fr,nl,tr,es,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Selecton \u2014 selection popup. Copy and search",
    "version": "3.7.0",
    "author": "emvaized",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "icons": {
        "48": "icons\/logo-48.png",
        "96": "icons\/logo-96.png"
    },
    "web_accessible_resources": [
        "icons\/button-icons\/bold.svg",
        "icons\/button-icons\/calendar.svg",
        "icons\/button-icons\/call.svg",
        "icons\/button-icons\/clear.svg",
        "icons\/button-icons\/copy.svg",
        "icons\/button-icons\/cut.svg",
        "icons\/button-icons\/dictionary.svg",
        "icons\/button-icons\/email.svg",
        "icons\/button-icons\/italic.svg",
        "icons\/button-icons\/link.svg",
        "icons\/button-icons\/marker.svg",
        "icons\/button-icons\/map.svg",
        "icons\/button-icons\/open.svg",
        "icons\/button-icons\/paste.svg",
        "icons\/button-icons\/search.svg",
        "icons\/button-icons\/strike.svg",
        "icons\/button-icons\/time.svg",
        "icons\/button-icons\/translate.svg"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "background": {
        "scripts": [
            "src\/functions\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/data\/configs.js",
                "src\/data\/variables.js",
                "src\/data\/currencies.js",
                "src\/data\/search-urls.js",
                "src\/data\/keywords.js",
                "src\/data\/tooltip-icons.js",
                "src\/functions\/locale-functions.js",
                "src\/functions\/selection-functions.js",
                "src\/functions\/currencies-functions.js",
                "src\/functions\/clipboard-functions.js",
                "src\/functions\/color-functions.js",
                "src\/functions\/text-functions.js",
                "src\/functions\/tooltip-functions.js",
                "src\/functions\/dark-page-detection.js",
                "src\/functions\/hover-buttons-functions.js",
                "src\/functions\/marker-functions.js",
                "src\/functions\/css-path-for-node.js",
                "src\/ui\/buttons\/basic-buttons.js",
                "src\/ui\/buttons\/contextual-buttons.js",
                "src\/ui\/buttons\/hover-buttons\/translate-button.js",
                "src\/ui\/buttons\/hover-buttons\/dictionary-button.js",
                "src\/ui\/buttons\/hover-buttons\/collapse-button.js",
                "src\/ui\/buttons\/hover-buttons\/marker.js",
                "src\/ui\/buttons\/hover-buttons\/search-button.js",
                "src\/ui\/buttons\/hover-buttons\/calendar-button.js",
                "src\/ui\/selection-handles.js",
                "src\/ui\/tooltip.js",
                "src\/index.js"
            ],
            "css": [
                "src\/index.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "browser_style": true,
        "chrome_style": true,
        "open_in_tab": false
    },
    "browser_action": {
        "default_icon": "icons\/logo-96.png",
        "default_title": "Selecton",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "https:\/\/translate.googleapis.com\/*",
        "https:\/\/api.exchangerate.host\/*",
        "https:\/\/min-api.cryptocompare.com\/data\/*",
        "https:\/\/*.wikipedia.org\/w\/*",
        "storage",
        "notifications",
        "clipboardRead"
    ]
}