uSuperDrag

Drag selected text to search for and link to open in a new tab

uSuperDrag란 무엇입니까?

uSuperDrag은(는) iorate에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Drag selected text to search for and link to open in a new tab"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This Chrome extension provides "Super Drag" for selected text and link. If you drag-and-drop selected text or link, it will be searched for by the specified search engine (default: Google) or opened in a new tab, respectively.

In addition, this extension enables us to drag link text horizontally and select it, just like Presto Opera.                    

확장 프로그램 기본 정보

이름 uSuperDrag uSuperDrag
ID liikkibjjbncmbpjebipicodoegpcael
공식 URL https://chromewebstore.google.com/detail/usuperdrag/liikkibjjbncmbpjebipicodoegpcael
설명 Drag selected text to search for and link to open in a new tab
파일 크기 18.29 KB
설치 횟수 1,260
현재 버전 1.2.7
최근 업데이트 2022-05-07
출시 날짜 2018-06-30
평점 4.09/5 총 11 개의 평점
개발자 iorate
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/iorate/uSuperDrag
개인정보 보호 정책 페이지 URL https://iorate.github.io/ublacklist/privacy-policy
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.2.7",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "eventpage.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html"
    }
}