Word Highlighter

This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web

ما هو Word Highlighter؟

Word Highlighter هو إضافة Chrome تم تطويرها بواسطة Rafael Almeida، والميزة الرئيسية لها هي "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Word Highlighter

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

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

                        The source code for this extension is available at https://github.com/rafaelcpalmeida/Word-Highlighter                    

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

الاسم Word Highlighter Word Highlighter
ID ncjaameocjfjjnjcijikhkhifncjijhn
عنوان URL الرسمي https://chromewebstore.google.com/detail/word-highlighter/ncjaameocjfjjnjcijikhkhifncjijhn
الوصف This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web
حجم الملف 229 KB
عدد التثبيتات 826
النسخة الحالية 1.0.2
آخر تحديث 2016-11-27
تاريخ النشر 2016-11-27
تقييم 2.75/5 مجموع تقييمات 8
المطور Rafael Almeida
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Highlighter",
    "description": "This extension allows you to add our custom words to a list and have them, automatically, highlighted as you browse the Web",
    "version": "1.0.2",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/content.js"
            ]
        }
    ]
}