DeepCite

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

¿Qué es DeepCite?

DeepCite es una extensión de Chrome desarrollada por oleary.connor, y su función principal es "In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión DeepCite

Descarga archivos de extensión DeepCite en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre DeepCite DeepCite
ID oibmgglhkkaigemacdkfeedffkjbpgoi
URL Oficial https://chromewebstore.google.com/detail/deepcite/oibmgglhkkaigemacdkfeedffkjbpgoi
Descripción In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…
Tamaño del Archivo 126 KB
Cantidad de Instalaciones 138
Versión Actual 1.7.2
Última Actualización 2022-08-29
Fecha de Publicación 2020-06-28
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador oleary.connor
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/connorjoleary/DeepCite
Idiomas Soportados 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"
            ]
        }
    ]
}