QLattes
Automatically annotate the Qualis classification of journal publications listed in CNPq's CV Lattes pages.
什么是QLattes?
QLattes是由nabor.mendonca开发的Chrome扩展程序,该扩展的主要功能是“Automatically annotate the Qualis classification of journal publications listed in CNPq's CV Lattes pages.”。
扩展截图
下载QLattes扩展crx文件
下载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:\/\/\/*" ] } ] } |