DeepCite
In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…
Qu'est-ce que DeepCite ?
DeepCite est une extension Chrome développée par oleary.connor, et sa fonction principale est "In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension DeepCite
Téléchargez les fichiers d'extension DeepCite au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | DeepCite |
ID | oibmgglhkkaigemacdkfeedffkjbpgoi |
URL Officiel | https://chromewebstore.google.com/detail/deepcite/oibmgglhkkaigemacdkfeedffkjbpgoi |
Description | In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm… |
Taille du Fichier | 126 KB |
Nombre d'Installations | 138 |
Version Actuelle | 1.7.2 |
Dernière Mise à Jour | 2022-08-29 |
Date de Publication | 2020-06-28 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | oleary.connor |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/connorjoleary/DeepCite |
Langues Prises en Charge | 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" ] } ] } |