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"입니다.
확장 프로그램 스크린샷
Textbook 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.
확장 프로그램 기본 정보
이름 | |
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" ] } ] } |