QLattes

Automatically annotate the Qualis classification of journal publications listed in CNPq's CV Lattes pages.

Was ist QLattes?

QLattes ist eine Chrome-Erweiterung, die von nabor.mendonca entwickelt wurde, und ihr Hauptmerkmal ist "Automatically annotate the Qualis classification of journal publications listed in CNPq's CV Lattes pages.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

QLattes-Erweiterungs-CRX-Datei herunterladen

Laden Sie QLattes-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name QLattes QLattes
ID cobekobjpobenpjdggbpkkklkcfoinen
Offizielle URL https://chromewebstore.google.com/detail/qlattes/cobekobjpobenpjdggbpkkklkcfoinen
Beschreibung Automatically annotate the Qualis classification of journal publications listed in CNPq's CV Lattes pages.
Dateigröße 1.84 MB
Installationsanzahl 10,000
Aktuelle Version 0.2.1
Letztes Update 2023-04-15
Veröffentlichungsdatum 2023-01-07
Bewertung 5.00/5 Insgesamt 14 Bewertungen
Entwickler nabor.mendonca
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/nabormendonca/qlattes
Hilfeseite URL https://github.com/nabormendonca/qlattes
Unterstützte Sprachen 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:\/\/\/*"
            ]
        }
    ]
}