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."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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:\/\/\/*"
            ]
        }
    ]
}