DeepCite
In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…
DeepCite là gì?
DeepCite là một tiện ích mở rộng Chrome được phát triển bởi oleary.connor, và tính năng chính của nó là "In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng DeepCite
Tải xuống các tệp mở rộng DeepCite dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | DeepCite |
ID | oibmgglhkkaigemacdkfeedffkjbpgoi |
URL Chính Thức | https://chromewebstore.google.com/detail/deepcite/oibmgglhkkaigemacdkfeedffkjbpgoi |
Mô tả | In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm… |
Kích Thước Tệp | 126 KB |
Số Lần Cài Đặt | 138 |
Phiên Bản Hiện Tại | 1.7.2 |
Cập Nhật Lần Cuối | 2022-08-29 |
Ngày Phát Hành | 2020-06-28 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | oleary.connor |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/connorjoleary/DeepCite |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |