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. 擴展基本資訊
| 名稱 | |
| ID | cobekobjpobenpjdggbpkkklkcfoinen |
| 官方網址 | 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:\/\/\/*"
]
}
]
} | |