DeepCite

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

Wat is DeepCite?

DeepCite is een Chrome-extensie ontwikkeld door oleary.connor, en de belangrijkste functie is "In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie DeepCite

Download DeepCite-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam DeepCite DeepCite
ID oibmgglhkkaigemacdkfeedffkjbpgoi
Officiële URL https://chromewebstore.google.com/detail/deepcite/oibmgglhkkaigemacdkfeedffkjbpgoi
Beschrijving In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…
Bestandsgrootte 126 KB
Aantal Installaties 138
Huidige Versie 1.7.2
Laatst Bijgewerkt 2022-08-29
Publicatiedatum 2020-06-28
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar oleary.connor
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/connorjoleary/DeepCite
Ondersteunde Talen 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"
            ]
        }
    ]
}