Nikud for the Web
Easily add vocalization to any webpage in your browser with a click of a button. With this free extension from Dicta, you can…
Что такое Nikud for the Web?
Nikud for the Web - это расширение Chrome, разработанное https://dicta.org.il, и его основная функция - "Easily add vocalization to any webpage in your browser with a click of a button. With this free extension from Dicta, you can…".
Снимки экрана расширения
Скачать файл CRX расширения Nikud for the Web
Скачайте файлы расширений Nikud for the Web в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        Easily add vocalization to any webpage in your browser with a click of a button.
With this free extension from Dicta, you can easily add vocalization to any webpage.
The plugin is a free product from Dicta, like the rest of our tools - which are free and distributed for the benefit of the public.
Visit our website and discover more tools we offer:
https://dicta.org.il                     Основная информация о расширении
| Название |  | 
| ID | pjjhddgjjmhbnlfjkobjmemihhbaaipd | 
| Официальный URL | https://chromewebstore.google.com/detail/nikud-for-the-web/pjjhddgjjmhbnlfjkobjmemihhbaaipd | 
| Описание | Easily add vocalization to any webpage in your browser with a click of a button. With this free extension from Dicta, you can… | 
| Размер файла | 668 KB | 
| Количество установок | 800 | 
| Текущая Версия | 0.2.0 | 
| Последнее Обновление | 2023-08-09 | 
| Дата публикации | 2022-02-07 | 
| Разработчик | https://dicta.org.il | 
| Электронная почта | [email protected] | 
| Тип оплаты | free | 
| Официальный сайт расширения | https://nakdanlive.dicta.org.il/ | 
| URL страницы политики конфиденциальности | https://dicta.org.il/tos | 
| Поддерживаемые языки | en,iw | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_name__",
    "version": "0.2.0",
    "author": "Michael Tsaban, Dicta",
    "default_locale": "en",
    "minimum_chrome_version": "92",
    "commands": {
        "_execute_action": {
            "description": "Opens the browser action popup"
        }
    },
    "icons": {
        "250": "icon.png"
    },
    "background": {
        "service_worker": "src\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "src\/options_page\/index.html",
        "open_in_tab": true
    },
    "action": {
        "default_icon": "icon.png",
        "default_title": "__MSG_name__",
        "default_popup": "src\/browser_action\/index.html"
    },
    "permissions": [
        "storage"
    ]
} | |