DeepCite
In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…
Cos'è DeepCite?
DeepCite è un'estensione di Chrome sviluppata da oleary.connor, e la sua funzione principale è "In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione DeepCite
Scarica i file di estensione DeepCite in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | DeepCite |
ID | oibmgglhkkaigemacdkfeedffkjbpgoi |
URL Ufficiale | https://chromewebstore.google.com/detail/deepcite/oibmgglhkkaigemacdkfeedffkjbpgoi |
Descrizione | In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm… |
Dimensione del File | 126 KB |
Conteggio Installazioni | 138 |
Versione Corrente | 1.7.2 |
Ultimo Aggiornamento | 2022-08-29 |
Data di Pubblicazione | 2020-06-28 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | oleary.connor |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/connorjoleary/DeepCite |
Lingue Supportate | 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" ] } ] } |