Drag & DropZones +

[userChromeJS] Drag selected character strings or image and drop to the semitransparent box displayed on web page to open search result.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği yüklemek için Tampermonkey gibi bir uzantı yüklemeniz gerekir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

Bu stili yüklemek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için Stylus gibi bir uzantı kurmanız gerekir.

Bu stili yükleyebilmek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı kurmanız gerekir.

Bu stili yükleyebilmek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

(Zateb bir user-style yöneticim var, yükleyeyim!)

Yazar
100の人 (エスパー・イーシア)
Günlük kurulumlar
0
Toplam kurulumlar
663
Değerlendirmeler
14 0 2
Versiyon
4.10.1
Oluşturulma
05.04.2014
Güncellenme
29.03.2026
Boyut
50,2 KB
Uyumluluk
Firefox ile uyumluluk Chrome ile uyumsuzluk Opera ile uyumsuzluk Edge ile uyumsuzluk
Lisans
MPL-2.0
Geçerli
  • Doesn't block drag-and-drop on Webpages.
  • Always brings to front; is not affected by Webpage stylesheets or frames etc.
  • Can drop hyperlinks or images.
  • Supports dragging into browser from outside, and you can post image or audio file.
  • Search engine information doesn't leak because this script doesn't embed dropzones into Webpages.
  • Can synchronize with Search Bar engine.

This script is for userChromeJS. Choose the Tools tab from the menu bar to open Drag & DropZones+ settings. If the bar isn't displayed, press the "F10" key to display it.

▚▚▚▚▚ Settings

Create a file named drag-and-dropzones-plus.json in chrome folder. If it does not exist, a sample file will be generated when you open the Firefox window.

where Where to open the search results. One of current tab window.
providers.name Name. If only this field is specified, the browser’s registered search engine of the same name will be used.
providers.search_url URL. {searchTerms} is replaced by the search terms.
providers.search_url_post_params When using the POST method, specify in application/x-www-form-urlencoded format (sent in multipart/form-data). {searchTerms} is replaced by the search terms.
providers.image_url URL for searching by image.
providers.image_url_post_params When searching by image, specify in application/x-www-form-urlencoded format. {searchTerms} is replaced with the image data.
providers.favicon_url URL of an icon starting with data:
providers.encoding Character encoding. If unspecified, UTF-8.

Example

{
    "where": "tab",
    "providers": [
        {
            "name": "Google"
        },
        {
            "name": "Weblio辞書"
        },
        {
            "name": "Weblio英和和英"
        },
        {
            "name": "Wikipedia (ja)"
        },
        {
            "name": "Google 翻訳"
        },
        {
            "name": "DeepL Translate"
        },
        {
            "name": "Google 画像で検索",
            "image_url": "https://www.google.com/searchbyimage/upload",
            "image_url_post_params": "encoded_image={searchTerms}",
        }
    ]
}

▚▚▚▚▚ Acknowledgement

I made this script on the basis of the idea and design of Drag & DropZones (Web Search Pro) which has quit development.

Former name

Drag & Drop Search+ (Version 1.2.4 or previous)