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
Eメール [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"
            ]
        }
    ]
}