Web Highlighter

This extension will help you store and highlight phrases or chunks of text, and add description if needed.

ما هو Web Highlighter؟

Web Highlighter هو إضافة Chrome تم تطويرها بواسطة jfernando0911، والميزة الرئيسية لها هي "This extension will help you store and highlight phrases or chunks of text, and add description if needed.".

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

screenshot
screenshot

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

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

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

                        Web higlighter is an extension for chrome that helps you highlight words, phrases or chunks of text. You can add descriptions, translation or any kind of details to the highlights. Everytime you find a word on the web that you saved in your database it will be highlighted with their respective details, descriptions or details.

This extension was heavily inspired by lingq and learning with texts.                    

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

الاسم Web Highlighter Web Highlighter
ID laoclledadegilngghaiilbepfgpekil
عنوان URL الرسمي https://chromewebstore.google.com/detail/web-highlighter/laoclledadegilngghaiilbepfgpekil
الوصف This extension will help you store and highlight phrases or chunks of text, and add description if needed.
حجم الملف 261 KB
عدد التثبيتات 3,629
النسخة الحالية 0.3.3
آخر تحديث 2020-07-17
تاريخ النشر 2020-06-01
تقييم 3.71/5 مجموع تقييمات 7
المطور jfernando0911
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Highlighter",
    "description": "This extension will help you store and highlight phrases or chunks of text, and add description if needed.",
    "version": "0.3.3",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "css": [
                "highlightStyle.css"
            ],
            "js": [
                "mark.es6.min.js",
                "contentScript.js",
                "Functions.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Web Highlighter"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "Functions.js",
            "backgroundScript.js"
        ]
    }
}