Scite

scite allows users to see how a publication has been cited, providing the citation context and classification

Apa itu Scite?

Scite adalah ekstensi Chrome yang dikembangkan oleh https://scite.ai, dan fitur utamanya adalah "scite allows users to see how a publication has been cited, providing the citation context and classification".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Scite

Unduh file ekstensi Scite dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        scite is a platform that helps researchers better discover and evaluate scientific articles through Smart Citations–citations that display the context of the citation and describe whether the article provides supporting or contrasting evidence.

Code available: https://github.com/scitedotai/scite-extension                    

Informasi Dasar Ekstensi

Nama Scite Scite
ID homifejhmckachdikhkgomachelakohh
URL Resmi https://chromewebstore.google.com/detail/scite/homifejhmckachdikhkgomachelakohh
Deskripsi scite allows users to see how a publication has been cited, providing the citation context and classification
Ukuran File 778 KB
Jumlah Instalasi 124,267
Versi Saat Ini 1.36.0
Terakhir Diperbarui 2023-07-06
Tanggal Publikasi 2020-06-17
Penilaian 4.00/5 Total 29 Penilaian
Pengembang https://scite.ai
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://scite.ai
URL Halaman Bantuan https://help.scite.ai/
URL Halaman Kebijakan Privasi https://scite.ai/policy
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scite",
    "author": "Scite Inc.",
    "version": "1.36.0",
    "manifest_version": 2,
    "description": "scite allows users to see how a publication has been cited, providing the citation context and classification",
    "icons": {
        "16": "images\/icons\/16.png",
        "32": "images\/icons\/32.png",
        "48": "images\/icons\/48.png",
        "64": "images\/icons\/64.png",
        "128": "images\/icons\/128.png",
        "256": "images\/icons\/256.png",
        "512": "images\/icons\/512.png",
        "1024": "images\/icons\/1024.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "index.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.scite.ai\/*",
            "*:\/\/localhost\/*"
        ]
    },
    "permissions": [
        "https:\/\/api.scite.ai\/*",
        "contextMenus",
        "storage"
    ],
    "web_accessible_resources": [
        "fonts\/*"
    ]
}