DeepCite

In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…

DeepCiteคืออะไร?

DeepCite เป็นส่วนขยายของ Chrome ที่พัฒนาโดย oleary.connor และคุณลักษณะหลักของมันคือ "In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DeepCite

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

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

                        In a world filled with fake news and alternative facts, get the real deep sources for your information.

DeepCite is an algorithm which takes in a website and claim, then searches through that website for any similar passages. If it finds any, it checks to see if that passage links to any other websites and the then the algorithm repeats itself. This allows the user to easily trace back otherwise difficult to find source and quickly figure out how reliable a piece of information actually is.

More information can be found here: https://github.com/connorjoleary/DeepCite                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ DeepCite DeepCite
ID oibmgglhkkaigemacdkfeedffkjbpgoi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/deepcite/oibmgglhkkaigemacdkfeedffkjbpgoi
คำอธิบาย In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…
ขนาดไฟล์ 126 KB
จำนวนการติดตั้ง 138
เวอร์ชันปัจจุบัน 1.7.2
อัปเดตครั้งล่าสุด 2022-08-29
วันที่เผยแพร่ 2020-06-28
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา oleary.connor
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/connorjoleary/DeepCite
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DeepCite",
    "version": "1.7.2",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "content_security_policy": "script-src 'self' http:\/\/localhost:8001\/test\/deepcite; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:8001\/*",
                "https:\/\/us-central1-deepcite-306405.cloudfunctions.net\/deepcite\/*"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js"
            ]
        }
    ]
}