Scite

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

Cos'è Scite?

Scite è un'estensione di Chrome sviluppata da https://scite.ai, e la sua funzione principale è "scite allows users to see how a publication has been cited, providing the citation context and classification".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Scite

Scarica i file di estensione Scite in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Scite Scite
ID homifejhmckachdikhkgomachelakohh
URL Ufficiale https://chromewebstore.google.com/detail/scite/homifejhmckachdikhkgomachelakohh
Descrizione scite allows users to see how a publication has been cited, providing the citation context and classification
Dimensione del File 778 KB
Conteggio Installazioni 124,267
Versione Corrente 1.36.0
Ultimo Aggiornamento 2023-07-06
Data di Pubblicazione 2020-06-17
Valutazione 4.00/5 Totale 29 Valutazioni
Sviluppatore https://scite.ai
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://scite.ai
URL della Pagina di Aiuto https://help.scite.ai/
URL della Pagina della Politica sulla Privacy https://scite.ai/policy
Lingue Supportate 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\/*"
    ]
}