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! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย k3vmcd และคุณลักษณะหลักของมันคือ "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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DragIt!

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ DragIt! 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"
    ]
}