Scite

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

Scite क्या है?

Scite https://scite.ai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "scite allows users to see how a publication has been cited, providing the citation context and classification"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Scite एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Scite Scite
ID homifejhmckachdikhkgomachelakohh
आधिकारिक URL https://chromewebstore.google.com/detail/scite/homifejhmckachdikhkgomachelakohh
विवरण scite allows users to see how a publication has been cited, providing the citation context and classification
फ़ाइल का आकार 778 KB
स्थापना संख्या 124,267
वर्तमान संस्करण 1.36.0
अंतिम अपडेट 2023-07-06
प्रकाशन तिथि 2020-06-17
रेटिंग 4.00/5 कुल 29 रेटिंग्स
डेवलपर https://scite.ai
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://scite.ai
सहायता पृष्ठ URL https://help.scite.ai/
गोपनीयता नीति पृष्ठ URL https://scite.ai/policy
समर्थित भाषाएँ 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\/*"
    ]
}