DeepCite

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

O que é DeepCite?

DeepCite é uma extensão do Chrome desenvolvida por oleary.connor, e sua principal característica é "In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão DeepCite

Baixe arquivos de extensão DeepCite no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome DeepCite DeepCite
ID oibmgglhkkaigemacdkfeedffkjbpgoi
URL Oficial https://chromewebstore.google.com/detail/deepcite/oibmgglhkkaigemacdkfeedffkjbpgoi
Descrição In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…
Tamanho do Arquivo 126 KB
Contagem de Instalações 138
Versão Atual 1.7.2
Última Atualização 2022-08-29
Data de Publicação 2020-06-28
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor oleary.connor
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/connorjoleary/DeepCite
Idiomas Suportados 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"
            ]
        }
    ]
}