Selection Popup

Perform customizable actions (Search, Copy etc) on selected text.

ما هو Selection Popup؟

Selection Popup هو إضافة Chrome تم تطويرها بواسطة mubaidr، والميزة الرئيسية لها هي "Perform customizable actions (Search, Copy etc) on selected text.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Selection Popup

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

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

                        Use commands (Copy or Go to Web address) on selected text or search the selected text using configurable search engines. 

You can manage search engines in options, their order of appearance, names etc

Enable or disable available commands in the options. 

Or even use your styles using CSS to customize the look of popup.                    

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

الاسم Selection Popup Selection Popup
ID ahecgidbcpeicikbcpaljaocofecilpd
عنوان URL الرسمي https://chrome.google.com/webstore/detail/selection-popup/ahecgidbcpeicikbcpaljaocofecilpd
الوصف Perform customizable actions (Search, Copy etc) on selected text.
حجم الملف 62.59 KB
عدد التثبيتات 1,000
النسخة الحالية 1.9.7
آخر تحديث 2020-02-11
تاريخ النشر 2020-02-11
تقييم 4.56/5 مجموع تقييمات 45
المطور mubaidr
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://github.com/mubaidr/selection-popup/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                ".\/contentScript.css"
            ],
            "js": [
                ".\/contentScript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "Perform customizable actions (Search, Copy etc) on selected text.",
    "icons": {
        "16": "assets\/icons\/icon_48.png",
        "128": "assets\/icons\/icon_128.png"
    },
    "manifest_version": 2,
    "name": "Selection Popup",
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "version": "1.9.7"
}