Remove Selection

This extension removes selected text.

ما هو Remove Selection؟

Remove Selection هو إضافة Chrome تم تطويرها بواسطة vncnt.liu، والميزة الرئيسية لها هي "This extension removes selected text.".

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

screenshot

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

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

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

                        After selecting some text, you can click the icon on the browser Toolbar, or choose 'Remove Selection' in the right-click Menu. I wrote it because it was one of the feature in FastestFox for Firefox and I love it, but did not find a good alternative in Chrome.                    

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

الاسم Remove Selection Remove Selection
ID mcfnbphdcohjpejiocghpcajmicbjink
عنوان URL الرسمي https://chromewebstore.google.com/detail/remove-selection/mcfnbphdcohjpejiocghpcajmicbjink
الوصف This extension removes selected text.
حجم الملف 10.02 KB
عدد التثبيتات 118
النسخة الحالية 2.0
آخر تحديث 2022-05-11
تاريخ النشر 2017-08-09
تقييم 4.67/5 مجموع تقييمات 6
المطور vncnt.liu
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove Selection",
    "description": "This extension removes selected text.",
    "version": "2.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_title": "Remove Selection",
        "default_icon": "images\/icon16.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ]
}