Scite

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

Scite란 무엇입니까?

Scite은(는) https://scite.ai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "scite allows users to see how a publication has been cited, providing the citation context and classification"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Scite 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*"
    ]
}