Highlight Search Keywords

Highlight the keywords that you searched in google

ما هو Highlight Search Keywords؟

Highlight Search Keywords هو إضافة Chrome تم تطويرها بواسطة Desheng Li، والميزة الرئيسية لها هي "Highlight the keywords that you searched in google".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Highlight Search Keywords

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

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

                        Since the new policy of Chrome Extension, to enable the extension again. Please click the icon -> This can read an change the site data -> On all site (recommended) or the site you are currently on.
 
An extension that highlight the keywords that you searched on Google.
Press F5 to remove the highlights.                    

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

الاسم Highlight Search Keywords Highlight Search Keywords
ID nflhamjkngakbdnihackfkjoabknmooi
عنوان URL الرسمي https://chromewebstore.google.com/detail/highlight-search-keywords/nflhamjkngakbdnihackfkjoabknmooi
الوصف Highlight the keywords that you searched in google
حجم الملف 145 KB
عدد التثبيتات 5,605
النسخة الحالية 0.4
آخر تحديث 2019-08-21
تاريخ النشر 2019-08-21
تقييم 3.21/5 مجموع تقييمات 33
المطور Desheng Li
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlight Search Keywords",
    "description": "Highlight the keywords that you searched in google",
    "version": "0.4",
    "permissions": [
        "storage"
    ],
    "manifest_version": 2,
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/*",
                "http:\/\/www.google.com\/*"
            ],
            "js": [
                "catchkeywords.js"
            ],
            "run_at": "document_end"
        },
        {
            "exclude_matches": [
                "https:\/\/www.google.com\/*",
                "http:\/\/www.google.com\/*"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "highlightkeywords.js"
            ],
            "run_at": "document_end"
        }
    ]
}