ChromeView

An extension that provides alternative sources to read the same news article in an attempt to limit the effect of fake news.

Τι είναι το ChromeView;

Το ChromeView είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rsickles9, και η κύρια λειτουργία του είναι "An extension that provides alternative sources to read the same news article in an attempt to limit the effect of fake news.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης ChromeView

Λήψη αρχείων επέκτασης ChromeView σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ChromeView is an extension for Facebook that provides alternative sources to read the same news article in an attempt to limit the effect of fake news. We use the lateral.io news recommender API to serve you related news articles from various less biased sources. We try to recommend articles that may be from a different political leaning from what you are used to reading in order to give you a new perspective on news. The meter at the top changes as you read recommended articles based on the new article's political leaning. This allows you to get a better perspective of your own political leaning and how it changes based on reading articles that we recommend. Red is more conservative and blue is more liberal. Hover over the white heading section of an article and start reading! 

Current Version Works With Sources: Fox, CNN, Breitbart
More to be added soon!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα ChromeView ChromeView
ID imcdfjpblgmhcdikgkhogbnebhhifdch
Επίσημο URL https://chrome.google.com/webstore/detail/chromeview/imcdfjpblgmhcdikgkhogbnebhhifdch
Περιγραφή An extension that provides alternative sources to read the same news article in an attempt to limit the effect of fake news.
Μέγεθος Αρχείου 40.5 KB
Αριθμός Εγκαταστάσεων 124
Τρέχουσα Έκδοση 2.0
Τελευταία Ενημέρωση 2017-05-10
Ημερομηνία Δημοσίευσης 2017-05-10
Προγραμματιστής rsickles9
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ChromeView",
    "description": "An extension that provides alternative sources to read the same news article in an attempt to limit the effect of fake news.",
    "version": "2.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Inject!"
    },
    "background": {
        "pages": [
            "popup.html"
        ],
        "scripts": [
            "jquery-3.2.0.min.js",
            "inject_js.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.google.com\/*",
                "http:\/\/*.facebook.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery-3.2.0.min.js",
                "popup.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "w3.css"
    ],
    "permissions": [
        "activeTab",
        "https:\/\/www.facebook.com\/*",
        "tabs",
        "https:\/\/ajax.googleapis.com\/",
        "https:\/\/api-v4.lateral.io\/*",
        "https:\/\/news-api.lateral.io\/documents\/similar-to-text",
        "storage"
    ]
}