Textbook

Removes all images from Facebook, leaving only the text

Textbook क्या है?

Textbook http://bengrosser.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Removes all images from Facebook, leaving only the text"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Textbook एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Textbook Textbook
ID bnegheghckjemomhgafjhppnjgdoiohm
आधिकारिक URL https://chrome.google.com/webstore/detail/textbook/bnegheghckjemomhgafjhppnjgdoiohm
विवरण Removes all images from Facebook, leaving only the text
फ़ाइल का आकार 76.48 KB
स्थापना संख्या 102
वर्तमान संस्करण 1.0.3
अंतिम अपडेट 2018-05-08
प्रकाशन तिथि 2018-05-08
रेटिंग 4.25/5 कुल 4 रेटिंग्स
डेवलपर http://bengrosser.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://bengrosser.com/projects/textbook/
सहायता पृष्ठ URL http://bengrosser.com/projects/textbook/faq-for-textbook/
समर्थित भाषाएँ 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"
            ]
        }
    ]
}