TextFirst
Loading a web page for text first, then, if possible, click to load an image
TextFirst란 무엇입니까?
TextFirst은(는) Wit Thanawitchayakarn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Loading a web page for text first, then, if possible, click to load an image"입니다.
확장 프로그램 스크린샷
TextFirst 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a Chrome extension for people who have slow network connection and/or limited network data usage and want to surf the web as fast and less data usage as possible. The way to achieve this is to let the browser loads only necessary stuffs first and explicitly loads some heavy stuffs on demand later. This extension is intended to do that by trying to block image/video loading and let users click on a placeholder (a square placed instead of an image) to load the image and replace that placeholder. Caveats * Not every image can be clicked to load on demand because some images are links. When you click it, it navigates to wherever the link points to. And some images are background images. It's quite hard to interact with those. * Videos are blocked but could not be clicked to load. This extension is free and open sourced. For more information, please visit https://github.com/witterk/textfirst
확장 프로그램 기본 정보
이름 | |
ID | ohjaggojgjiabnkcdogonglbfadljffn |
공식 URL | https://chrome.google.com/webstore/detail/textfirst/ohjaggojgjiabnkcdogonglbfadljffn |
설명 | Loading a web page for text first, then, if possible, click to load an image |
파일 크기 | 15.34 KB |
설치 횟수 | 128 |
현재 버전 | 0.1 |
최근 업데이트 | 2013-08-10 |
출시 날짜 | 2013-08-10 |
평점 | 3.92/5 총 12 개의 평점 |
개발자 | Wit Thanawitchayakarn |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/witterk/textfirst |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TextFirst", "version": "0.1", "manifest_version": 2, "description": "Loading a web page for text first, then, if possible, click to load an image", "icons": { "16": "icon-16x16.png", "48": "icon-48x48.png", "128": "icon-128x128.png" }, "browser_action": { "default_title": "TextFirst", "default_icon": "icon-19x19.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "js": [ "contentscript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": true, "run_at": "document_idle" } ], "permissions": [ "tabs", "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*" ], "web_accessible_resources": [ "bg.png", "bg-loading.png" ] } |