Check

Verify breaking news online

Co je Check?

Check je rozšíření Chrome vyvinuté Meedan, a jeho hlavní funkcí je „Verify breaking news online“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Check

Stáhněte si soubory rozšíření Check ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Verify breaking news online

Chrome will ask you for permission to read your browsing history. This allows the browser extension to add your current tab to Check when you click on the browser icon. Meedan does not log any other data on our servers.

Check, developed by Meedan, is a platform for collaborative verification of digital media. The Check project builds online tools to improve the investigative quality of citizen journalism and help limit the rapid spread of rumors and misinformation online. Using Check you can quickly build a team, add social media links to fact-check them, set key questions for investigating news items gathered amongst your team.

Check’s browser extension allows you to quickly add media items that you come across on the internet to your Check team for investigation, and answer annotations concerning these items right from within the extension’s sidebar. Here’s how you can use it:

Browse the internet, and find a Tweet, YouTube video, Facebook post or an Instagram photo that you want your team to fact-check and investigate. Click the Check icon, choose one of the projects you want to add this item to, and save it.

The extension also detects if the item already exists in Check, and shows you the relevant tasks to be answered concerning it in the sidebar. Select a task, then highlight text from the page: the text will automatically populate the task answer.

You can also highlight text from an article, a web page, or an incoming WhatsApp Web message. Right click, select the Check icon, and choose one of the projects you want to add this text to.

The extension works on Tweetdeck for web and other tools that operate on the browser.

On Check, you can see this item added as media on your team and you can start the verification process right away. Here’s what you can do on Check for fact-checking:

Add journalists and citizen journalists to your team so that they can contribute to the verification process.

Ask questions about media items, like date, time, location and evidence to help deciding if it’s true or fake.

Add a verification status to each media item you have on your team to reflect the result of the fact-checking process like, verified, false or in progress.

If you work in digital media and want to try out Check as a way to streamline and coordinate your social news gathering and verification workflow, please visit https://meedan.com/en/check.                    

Základní Informace o Rozšíření

Název Check Check
ID pjfgpbclkfjkfiljlcfehjmpafeoafdi
Oficiální URL https://chromewebstore.google.com/detail/check/pjfgpbclkfjkfiljlcfehjmpafeoafdi
Popis Verify breaking news online
Velikost souboru 476 KB
Počet instalací 413
Aktuální Verze 2.5.13
Poslední Aktualizace 2022-09-28
Datum Vydání 2020-06-28
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Meedan
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://meedan.com/check
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Check",
    "description": "Verify breaking news online",
    "version": "2.5.13",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            },
            "description": "Verify breaking news online"
        }
    },
    "background": {
        "persistent": true,
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "check19-in.png",
        "default_title": "Check"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "check128.png",
        "48": "check48.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "popup.html"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/checkmedia.org\/"
        ]
    }
}