DragIt!
Drag & drop links or selected text to open/search in new tab. Drag right for a new, focused tab. Drag left for a new, unfocused tab.
DragIt!란 무엇입니까?
DragIt!은(는) k3vmcd에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Drag & drop links or selected text to open/search in new tab. Drag right for a new, focused tab. Drag left for a new, unfocused tab."입니다.
확장 프로그램 스크린샷
DragIt! 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Search (default Google): Select text, then drag and drop it to a blank area. Open link in a new tab: Drag a link and drop it. Drag to right: Open link/search in focused tab (foreground) Drag to left: Open link/search in unfocused tab (background) ---------------------- **What's New** v1.7 - Fixed foreground/background tab opening caused by deprecated Chrome API - Updated to Manifest V3 v1.6 - Fixed error when search engine formatted incorrectly v1.5 - SSL searches by default - Reset options button - Bugfixes v1.4 - Bugfixes v1.3 - Added option to disable DragIt! when text dropped to input field - Updated options page v1.2 - Minor bugfix v1.1 - Change the DragIt! search engine on the options page.
확장 프로그램 기본 정보
이름 | DragIt! |
ID | bnmedfjfiggbacggokfddhocaignedbk |
공식 URL | https://chromewebstore.google.com/detail/dragit/bnmedfjfiggbacggokfddhocaignedbk |
설명 | Drag & drop links or selected text to open/search in new tab. Drag right for a new, focused tab. Drag left for a new, unfocused tab. |
파일 크기 | 35.5 KB |
설치 횟수 | 2,584 |
현재 버전 | 1.7.0 |
최근 업데이트 | 2023-12-30 |
출시 날짜 | 2015-08-22 |
평점 | 4.43/5 총 42 개의 평점 |
개발자 | k3vmcd |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://gitlab.com/k3vmcd/DragIt |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DragIt!", "version": "1.7.0", "manifest_version": 3, "description": "Drag & drop links or selected text to open\/search in new tab. Drag right for a new, focused tab. Drag left for a new, unfocused tab.", "icons": { "128": "icon128.png", "16": "icon16.png", "32": "icon32.png", "48": "icon48.png" }, "background": { "service_worker": "service_worker.js" }, "options_page": "options.html", "content_scripts": [ { "js": [ "dragit.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "ftp:\/\/*\/*" ], "run_at": "document_start" } ], "permissions": [ "tabs", "storage" ] } |