QuickDrag for Chrome

ドラッグ&ドロップジェスチャーの機能を拡張し、選択したURL・テキストのWeb検索、ページ上の画像の保存を可能にします。

QuickDrag for Chrome là gì?

QuickDrag for Chrome là một tiện ích mở rộng Chrome được phát triển bởi kanaponta, và tính năng chính của nó là "ドラッグ&ドロップジェスチャーの機能を拡張し、選択したURL・テキストのWeb検索、ページ上の画像の保存を可能にします。".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng QuickDrag for Chrome

Tải xuống các tệp mở rộng QuickDrag for Chrome dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        ドラッグ&ドロップジェスチャーの機能を拡張し、選択したURL・テキストのWeb検索、ページ上の画像の保存を可能にします。
(Extends the function of the drag-and-drop mouse gesture so that it can be used to load URLs, do a web search of selected text on a page, or save an image on a page. )

<使い方(How to use)>
検索したい文字列を選択し、選択範囲を掴んでドラッグ&ドロップします。
(Select the string you wish to search, then grab the selection and drag & drop it.)

リンク部分をドラッグ&ドロップでそのリンク先を新しいタブで開くこともできます。
(You can also drag and drop a link to open it in a new tab.)

タブが開き、選択した文字列を検索します。
(A tab opens and searches for the selected character string.)

画像をドラッグすると、画像の保存もできます。
(You can also save images by dragging them.)

検索するエンジンや、タブの開き方等は設定から行えます。
(You can set the engine you want to search for, how to open tabs, etc., in the settings.)

※Chrome ウェブストアなど、拡張機能の利用が制限されているページでは、拡張機能を使用できません。
(Note : You cannot use extensions on pages where their use is restricted, such as the Chrome Web Store.)

<免責事項(Disclaimer)>
本拡張機能を公開するにあたり、機能等について細心の注意を払っておりますが、正確であるかどうか、最新のものであるかどうか、安全なものであるか等について保証をするものではなく、何らの責任を負うものではありません。
製作者は通知することなく掲載した情報の訂正、修正、追加、中断、削除等をいつでも行うことができるものとします。
本拡張機能のご利用により、万一、ご利用者様に何らかの不都合や損害が発生したとしても、製作者は何らの責任を負うものではありません。                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên QuickDrag for Chrome QuickDrag for Chrome
ID dmmpggjbbkfmldkfonjnpbdcmienbjil
URL Chính Thức https://chromewebstore.google.com/detail/quickdrag-for-chrome/dmmpggjbbkfmldkfonjnpbdcmienbjil
Mô tả ドラッグ&ドロップジェスチャーの機能を拡張し、選択したURL・テキストのWeb検索、ページ上の画像の保存を可能にします。
Kích Thước Tệp 24.19 KB
Số Lần Cài Đặt 1,680
Phiên Bản Hiện Tại 6.1.1
Cập Nhật Lần Cuối 2022-12-06
Ngày Phát Hành 2020-04-26
Đánh Giá 4.17/5 Tổng số 6 Đánh Giá
Nhà Phát Triển kanaponta
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://ameblo.jp/kanapondev/
Ngôn Ngữ Được Hỗ Trợ ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "QuickDrag for Chrome",
    "permissions": [
        "storage",
        "downloads"
    ],
    "version": "6.1.1",
    "description": "\u30c9\u30e9\u30c3\u30b0\uff06\u30c9\u30ed\u30c3\u30d7\u30b8\u30a7\u30b9\u30c1\u30e3\u30fc\u306e\u6a5f\u80fd\u3092\u62e1\u5f35\u3057\u3001\u9078\u629e\u3057\u305fURL\u30fb\u30c6\u30ad\u30b9\u30c8\u306eWeb\u691c\u7d22\u3001\u30da\u30fc\u30b8\u4e0a\u306e\u753b\u50cf\u306e\u4fdd\u5b58\u3092\u53ef\u80fd\u306b\u3057\u307e\u3059\u3002",
    "icons": {
        "48": "icons\/icon_48.png",
        "96": "icons\/icon_96.png",
        "128": "icons\/icon_128.png"
    },
    "action": {
        "default_icon": {
            "48": "icons\/icon_48.png",
            "96": "icons\/icon_96.png",
            "128": "icons\/icon_128.png"
        },
        "default_title": "QuickDrag options",
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "quickdrag.js"
            ],
            "run_at": "document_start",
            "match_about_blank": true,
            "all_frames": true
        }
    ]
}