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.
What is DragIt!?
DragIt! is a Chrome extension developed by k3vmcd, and its main feature is "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.".
Extension Screenshots
Download DragIt! Extension CRX File
Download DragIt! extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | DragIt! |
ID | bnmedfjfiggbacggokfddhocaignedbk |
Official URL | https://chromewebstore.google.com/detail/dragit/bnmedfjfiggbacggokfddhocaignedbk |
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. |
File Size | 35.5 KB |
Installation Count | 2,584 |
Current Version | 1.7.0 |
Last Updated | 2023-12-30 |
Publish Date | 2015-08-22 |
Rating | 4.43/5 Total 42 Ratings |
Developer | k3vmcd |
[email protected] | |
Payment Type | free |
Extension Website | https://gitlab.com/k3vmcd/DragIt |
Supported Languages | 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" ] } |