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 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 फ़ाइल डाउनलोड करें

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

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

                        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"
            ]
        }
    ]
}