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是由oleary.connor开发的Chrome扩展程序,该扩展的主要功能是“In a world filled with fake news and alternative facts, get the real deep sources for your information. DeepCite is an algorithm…”。

扩展截图

screenshot
screenshot

下载DeepCite扩展crx文件

下载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 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"
            ]
        }
    ]
}