Textbook
Removes all images from Facebook, leaving only the text
Textbook là gì?
Textbook là một tiện ích mở rộng Chrome được phát triển bởi http://bengrosser.com, và tính năng chính của nó là "Removes all images from Facebook, leaving only the text".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Textbook
Tải xuống các tệp mở rộng Textbook dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | bnegheghckjemomhgafjhppnjgdoiohm |
URL Chính Thức | https://chrome.google.com/webstore/detail/textbook/bnegheghckjemomhgafjhppnjgdoiohm |
Mô tả | Removes all images from Facebook, leaving only the text |
Kích Thước Tệp | 76.48 KB |
Số Lần Cài Đặt | 102 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2018-05-08 |
Ngày Phát Hành | 2018-05-08 |
Đánh Giá | 4.25/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | http://bengrosser.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://bengrosser.com/projects/textbook/ |
URL Trang Trợ Giúp | http://bengrosser.com/projects/textbook/faq-for-textbook/ |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |