Highlit

Highlights all occurrences of the currently selected word on page.

ما هو Highlit؟

Highlit هو إضافة Chrome تم تطويرها بواسطة Nikola Toshev، والميزة الرئيسية لها هي "Highlights all occurrences of the currently selected word on page.".

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

screenshot
screenshot
screenshot

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

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

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

                        An extension that highlights all occurrences of the currently selected word or phrase (recognizing different word forms in English). This is useful to outline central concepts in a text, or visually highlight where a specific identifier is used in code in browser window. Double-click a word on the current page to highlight it and all it's occurrences.                    

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

الاسم Highlit Highlit
ID cooahmcpmajfpnanjkdfiejkffphknnm
عنوان URL الرسمي https://chrome.google.com/webstore/detail/highlit/cooahmcpmajfpnanjkdfiejkffphknnm
الوصف Highlights all occurrences of the currently selected word on page.
حجم الملف 15.58 KB
عدد التثبيتات 952
النسخة الحالية 0.2.2
آخر تحديث 2019-03-08
تاريخ النشر 2019-03-08
تقييم 3.19/5 مجموع تقييمات 16
المطور Nikola Toshev
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlit",
    "version": "0.2.2",
    "manifest_version": 2,
    "minimum_chrome_version": "39",
    "description": "Highlights all occurrences of the currently selected word on page.",
    "icons": {
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lancasterStemming.js",
                "highlit.min.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "*.map"
    ],
    "permissions": [
        "storage"
    ]
}