Nuclia tools
Upload web content to Nuclia search engine
Что такое Nuclia tools?
Nuclia tools - это расширение Chrome, разработанное webstore, и его основная функция - "Upload web content to Nuclia search engine".
Снимки экрана расширения
Скачать файл CRX расширения Nuclia tools
Скачайте файлы расширений Nuclia tools в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
                        Nuclia is an API which lets you build optimized search-experiences for your users. It can index and understand unstructured data like web pages,  video or audio contents.
This Chrome extension allows to easily index a web page or a YouTube video in Nuclia. You just need to right-click a link and you can index its corresponding content in your Nuclia knowledge box.
If you have a YouYube API key, it also allows to index all the videos from a YouTube channel or YouTube playlist.                     Основная информация о расширении
| Название |  | 
| ID | omloknocmecnihlkbheeccidmelihanc | 
| Официальный URL | https://chromewebstore.google.com/detail/nuclia-tools/omloknocmecnihlkbheeccidmelihanc | 
| Описание | Upload web content to Nuclia search engine | 
| Размер файла | 69.75 KB | 
| Количество установок | 36 | 
| Текущая Версия | 0.0.5 | 
| Последнее Обновление | 2024-01-10 | 
| Дата публикации | 2022-09-20 | 
| Разработчик | webstore | 
| Электронная почта | [email protected] | 
| Тип оплаты | free | 
| Официальный сайт расширения | https://nuclia.com/ | 
| URL страницы помощи | https://github.com/nuclia/support | 
| URL страницы политики конфиденциальности | https://nuclia.com/privacy-policy | 
| Поддерживаемые языки | en | 
| manifest.json | |
| {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Nuclia tools",
    "description": "Upload web content to Nuclia search engine",
    "version": "0.0.5",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "tabs",
        "notifications"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options\/options.html",
        "open_in_tab": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "options\/options.html"
            ],
            "matches": [
                "http:\/\/localhost:4200\/*",
                "https:\/\/stashify.cloud\/*",
                "https:\/\/nuclia.cloud\/*"
            ]
        }
    ]
} | |