Textbook

Removes all images from Facebook, leaving only the text

什麼是Textbook?

Textbook是由http://bengrosser.com開發的Chrome擴展程式,該擴展的主要功能是“Removes all images from Facebook, leaving only the text”。

擴展截圖

screenshot
screenshot
screenshot

下載Textbook擴展crx文件

下載Textbook擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}