DeepCite
In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…
Was ist DeepCite?
DeepCite ist eine Chrome-Erweiterung, die von oleary.connor entwickelt wurde, und ihr Hauptmerkmal ist "In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…".
Erweiterungsscreenshots
DeepCite-Erweiterungs-CRX-Datei herunterladen
Laden Sie DeepCite-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | DeepCite |
ID | oibmgglhkkaigemacdkfeedffkjbpgoi |
Offizielle URL | https://chromewebstore.google.com/detail/deepcite/oibmgglhkkaigemacdkfeedffkjbpgoi |
Beschreibung | In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm… |
Dateigröße | 126 KB |
Installationsanzahl | 138 |
Aktuelle Version | 1.7.2 |
Letztes Update | 2022-08-29 |
Veröffentlichungsdatum | 2020-06-28 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | oleary.connor |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/connorjoleary/DeepCite |
Unterstützte Sprachen | 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" ] } ] } |