DeepCite

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

Co je DeepCite?

DeepCite je rozšíření Chrome vyvinuté oleary.connor, a jeho hlavní funkcí je „In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření DeepCite

Stáhněte si soubory rozšíření DeepCite ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název DeepCite DeepCite
ID oibmgglhkkaigemacdkfeedffkjbpgoi
Oficiální URL https://chromewebstore.google.com/detail/deepcite/oibmgglhkkaigemacdkfeedffkjbpgoi
Popis In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…
Velikost souboru 126 KB
Počet instalací 138
Aktuální Verze 1.7.2
Poslední Aktualizace 2022-08-29
Datum Vydání 2020-06-28
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář oleary.connor
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/connorjoleary/DeepCite
Podporované Jazyky 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"
            ]
        }
    ]
}