DeepCite
In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…
Τι είναι το DeepCite;
Το DeepCite είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον oleary.connor, και η κύρια λειτουργία του είναι "In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης DeepCite
Λήψη αρχείων επέκτασης DeepCite σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | DeepCite |
ID | oibmgglhkkaigemacdkfeedffkjbpgoi |
Επίσημο URL | https://chromewebstore.google.com/detail/deepcite/oibmgglhkkaigemacdkfeedffkjbpgoi |
Περιγραφή | In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm… |
Μέγεθος Αρχείου | 126 KB |
Αριθμός Εγκαταστάσεων | 138 |
Τρέχουσα Έκδοση | 1.7.2 |
Τελευταία Ενημέρωση | 2022-08-29 |
Ημερομηνία Δημοσίευσης | 2020-06-28 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | oleary.connor |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/connorjoleary/DeepCite |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |