Replace Text

Adds replace text to context menu.

ما هو Replace Text؟

Replace Text هو إضافة Chrome تم تطويرها بواسطة Danny Keeley، والميزة الرئيسية لها هي "Adds replace text to context menu.".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Replace Text

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

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

                        Right click on some text and choose Replace Text to begin!
Can also solve maths if in (brackets)

## Updates ##
v0.2 Styling and bug fixes (May 2021)                    

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

الاسم Replace Text Replace Text
ID jgghhonicjikbioneblcjhoghndmmcba
عنوان URL الرسمي https://chromewebstore.google.com/detail/replace-text/jgghhonicjikbioneblcjhoghndmmcba
الوصف Adds replace text to context menu.
حجم الملف 10.45 KB
عدد التثبيتات 27
النسخة الحالية 0.2
آخر تحديث 2021-05-10
تاريخ النشر 2021-05-08
المطور Danny Keeley
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Replace Text",
    "version": "0.2",
    "description": "Adds replace text to context menu.",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon-32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "contextMenus"
    ]
}