Textbook

Removes all images from Facebook, leaving only the text

Was ist Textbook?

Textbook ist eine Chrome-Erweiterung, die von http://bengrosser.com entwickelt wurde, und ihr Hauptmerkmal ist "Removes all images from Facebook, leaving only the text".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Textbook-Erweiterungs-CRX-Datei herunterladen

Laden Sie Textbook-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

                        Textbook is a web browser extension that removes images from the Facebook interface. Whether it's a linked article preview photo, a friend's profile selfie, or a "love" reaction icon, every image is hidden from view. Left behind are the blank boxes and white space where they used to be. Are certain kinds of images leading us to click on content we might have otherwise scrolled past? Does the layout and/or content of images on Facebook influence the way we read the site? Finally, what role might images play in the proliferation of fake news and clickbait? Textbook enables Facebook users to test questions like these for themselves, to see the site without the images and thus experience its content in a new way.                    

Grundlegende Informationen zur Erweiterung

Name Textbook Textbook
ID bnegheghckjemomhgafjhppnjgdoiohm
Offizielle URL https://chrome.google.com/webstore/detail/textbook/bnegheghckjemomhgafjhppnjgdoiohm
Beschreibung Removes all images from Facebook, leaving only the text
Dateigröße 76.48 KB
Installationsanzahl 102
Aktuelle Version 1.0.3
Letztes Update 2018-05-08
Veröffentlichungsdatum 2018-05-08
Bewertung 4.25/5 Insgesamt 4 Bewertungen
Entwickler http://bengrosser.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://bengrosser.com/projects/textbook/
Hilfeseite URL http://bengrosser.com/projects/textbook/faq-for-textbook/
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Textbook",
    "version": "1.0.3",
    "description": "Removes all images from Facebook, leaving only the text",
    "homepage_url": "http:\/\/bengrosser.com\/projects\/textbook\/",
    "manifest_version": 2,
    "icons": {
        "16": "textbook-logo-16.png",
        "32": "textbook-logo-32.png",
        "48": "textbook-logo-48.png",
        "64": "textbook-logo-64.png",
        "128": "textbook-logo-128.png",
        "256": "textbook-logo-256.png",
        "512": "textbook-logo-512.png"
    },
    "browser_action": {
        "default_icon": "textbook-logo-128.png",
        "default_popup": "options.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "all_frames": true,
            "exclude_globs": [
                "*:\/\/*.facebook.com\/ai.php*",
                "*:\/\/*.facebook.com\/ajax\/*",
                "*:\/\/*.facebook.com\/dialog\/*",
                "*:\/\/*.facebook.com\/xti.php*",
                "*:\/\/*.facebook.com\/connect\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.facebook.com\/ai.php*",
                "*:\/\/*.facebook.com\/ajax\/*",
                "*:\/\/*.facebook.com\/dialog\/*",
                "*:\/\/*.facebook.com\/xti.php*",
                "*:\/\/*.facebook.com\/connect\/*"
            ],
            "css": [
                "textbook.css"
            ],
            "js": [
                "jquery.min.js",
                "waitForKeyElements.js",
                "textbook.js"
            ]
        }
    ]
}