uSuperDrag

Drag selected text to search for and link to open in a new tab

ما هو uSuperDrag؟

uSuperDrag هو إضافة Chrome تم تطويرها بواسطة iorate، والميزة الرئيسية لها هي "Drag selected text to search for and link to open in a new tab".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة uSuperDrag

قم بتنزيل ملفات الامتداد uSuperDrag بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This Chrome extension provides "Super Drag" for selected text and link. If you drag-and-drop selected text or link, it will be searched for by the specified search engine (default: Google) or opened in a new tab, respectively.

In addition, this extension enables us to drag link text horizontally and select it, just like Presto Opera.                    

معلومات أساسية عن التمديد

الاسم uSuperDrag uSuperDrag
ID liikkibjjbncmbpjebipicodoegpcael
عنوان URL الرسمي https://chromewebstore.google.com/detail/usuperdrag/liikkibjjbncmbpjebipicodoegpcael
الوصف Drag selected text to search for and link to open in a new tab
حجم الملف 18.29 KB
عدد التثبيتات 1,260
النسخة الحالية 1.2.7
آخر تحديث 2022-05-07
تاريخ النشر 2018-06-30
تقييم 4.09/5 مجموع تقييمات 11
المطور iorate
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/iorate/uSuperDrag
عنوان صفحة سياسة الخصوصية https://iorate.github.io/ublacklist/privacy-policy
اللغات المدعومة en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.2.7",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "eventpage.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html"
    }
}