Scite

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

Qu'est-ce que Scite ?

Scite est une extension Chrome développée par https://scite.ai, et sa fonction principale est "scite allows users to see how a publication has been cited, providing the citation context and classification".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Scite

Téléchargez les fichiers d'extension Scite au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Scite Scite
ID homifejhmckachdikhkgomachelakohh
URL Officiel https://chromewebstore.google.com/detail/scite/homifejhmckachdikhkgomachelakohh
Description scite allows users to see how a publication has been cited, providing the citation context and classification
Taille du Fichier 778 KB
Nombre d'Installations 124,267
Version Actuelle 1.36.0
Dernière Mise à Jour 2023-07-06
Date de Publication 2020-06-17
Évaluation 4.00/5 Total 29 Évaluations
Développeur https://scite.ai
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://scite.ai
URL de la Page d'Aide https://help.scite.ai/
URL de la Page de Politique de Confidentialité https://scite.ai/policy
Langues Prises en Charge 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\/*"
    ]
}