FactPopUp

Creates notifications for fact-checking tweets.

Was ist FactPopUp?

FactPopUp ist eine Chrome-Erweiterung, die von gautamhathi entwickelt wurde, und ihr Hauptmerkmal ist "Creates notifications for fact-checking tweets.".

Erweiterungsscreenshots

screenshot
screenshot

FactPopUp-Erweiterungs-CRX-Datei herunterladen

Laden Sie FactPopUp-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension notifies you whenever there's a new fact check. Source code available here: https://github.com/ReportersLabDuke/FactPopUp                    

Grundlegende Informationen zur Erweiterung

Name FactPopUp FactPopUp
ID faaleponcnfhmolcbaajapgbigfffckj
Offizielle URL https://chrome.google.com/webstore/detail/factpopup/faaleponcnfhmolcbaajapgbigfffckj
Beschreibung Creates notifications for fact-checking tweets.
Dateigröße 336 KB
Installationsanzahl 190
Aktuelle Version 2.1.0
Letztes Update 2017-02-09
Veröffentlichungsdatum 2017-02-09
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler gautamhathi
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FactPopUp",
    "description": "Creates notifications for fact-checking tweets.",
    "version": "2.1.0",
    "browser_action": {
        "default_icon": "logo.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "keys.js",
            "js\/alert.js",
            "lib\/CryptoJS v3.1.2\/rollups\/hmac-sha256.js",
            "lib\/CryptoJS v3.1.2\/components\/enc-base64-min.js"
        ],
        "persistent": true
    },
    "content_security_policy": "media-src https:\/\/pbs.twimg.com\/media\/* 'self'; img-src https:\/\/pbs.twimg.com\/ 'self' data: chrome-extension-resource:;  script-src 'self'; object-src 'self'",
    "permissions": [
        "notifications",
        "activeTab",
        "alarms",
        "fontSettings",
        "https:\/\/ajax.googleapis.com\/*",
        "https:\/\/stream.twitter.com\/*",
        "http:\/\/www.politifact.com\/*",
        "https:\/\/pbs.twimg.com\/*",
        "https:\/\/raw.githubusercontent.com\/ReportersLabDuke\/FactPopUp\/*",
        "gcm",
        "storage",
        "https:\/\/*.servicebus.windows.net\/*",
        "management",
        "alarms"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/stream.twitter.com\/*",
            "http:\/\/www.politifact.com\/*"
        ]
    },
    "web_accessible_resources": [
        "logo.png"
    ]
}