QLattes
Automatically annotate the Qualis classification of journal publications listed in CNPq's CV Lattes pages.
Что такое QLattes?
QLattes - это расширение Chrome, разработанное nabor.mendonca, и его основная функция - "Automatically annotate the Qualis classification of journal publications listed in CNPq's CV Lattes pages.".
Снимки экрана расширения
Скачать файл CRX расширения QLattes
Скачайте файлы расширений QLattes в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Extensão do Chrome que automaticamente classifica os artigos em periódicos identificados nas páginas dos CVs da Plataforma Lattes do CNPq, de acordo com o Qualis da CAPES.
Основная информация о расширении
Название | QLattes |
ID | cobekobjpobenpjdggbpkkklkcfoinen |
Официальный URL | https://chromewebstore.google.com/detail/qlattes/cobekobjpobenpjdggbpkkklkcfoinen |
Описание | Automatically annotate the Qualis classification of journal publications listed in CNPq's CV Lattes pages. |
Размер файла | 1.84 MB |
Количество установок | 10,000 |
Текущая Версия | 0.2.1 |
Последнее Обновление | 2023-04-15 |
Дата публикации | 2023-01-07 |
Рейтинг | 5.00/5 Всего 14 оценок |
Разработчик | nabor.mendonca |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/nabormendonca/qlattes |
URL страницы помощи | https://github.com/nabormendonca/qlattes |
Поддерживаемые языки | pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "QLattes", "version": "0.2.1", "description": "Automatically annotate the Qualis classification of journal publications listed in CNPq's CV Lattes pages.", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "storage", "downloads" ], "action": { "default_icon": "images\/icon-16.png", "default_title": "QLattes", "default_popup": "html\/popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/buscatextual.cnpq.br\/buscatextual\/visualizacv.do*", "https:\/\/buscatextual.cnpq.br\/buscatextual\/visualizacv.do*" ], "js": [ "scripts\/content.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "images\/*.png", "data\/*.json", "html\/*.html" ], "matches": [ "http:\/\/buscatextual.cnpq.br\/*", "https:\/\/buscatextual.cnpq.br\/*", "file:\/\/\/*" ] } ] } |