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文件
下載DragIt!擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | bnmedfjfiggbacggokfddhocaignedbk |
| 官方網址 | 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"
]
} | |