Scite

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

Sciteคืออะไร?

Scite เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย Scite

ดาวน์โหลดไฟล์ส่วนขยาย Scite ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
    ]
}