XKCD Alt Text
The XKCD Alt Text extension makes it slightly easier to read the XKCD web comic. It's primary function is to add a description…
XKCD Alt Text란 무엇입니까?
XKCD Alt Text은(는) James Kwan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The XKCD Alt Text extension makes it slightly easier to read the XKCD web comic. It's primary function is to add a description…"입니다.
확장 프로그램 스크린샷
XKCD Alt Text 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The XKCD Alt Text extension makes it slightly easier to read the XKCD web comic. It's primary function is to add a description beneath the comic, so that you don't have to try and read the tiny hover text before it fades away. It can also move the header below the comic, to increase visibility. This feature can easily be disabled. Update 2.8.1: Works over HTTPS
확장 프로그램 기본 정보
이름 | XKCD Alt Text |
ID | gncnccgkhldnjnmhlmgcghhgbckeobph |
공식 URL | https://chromewebstore.google.com/detail/xkcd-alt-text/gncnccgkhldnjnmhlmgcghhgbckeobph |
설명 | The XKCD Alt Text extension makes it slightly easier to read the XKCD web comic. It's primary function is to add a description… |
파일 크기 | 57.64 KB |
설치 횟수 | 736 |
현재 버전 | 2.8.1 |
최근 업데이트 | 2014-01-27 |
출시 날짜 | 2014-01-26 |
평점 | 4.06/5 총 17 개의 평점 |
개발자 | James Kwan |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "page": "background.html" }, "content_scripts": [ { "js": [ "jquery.min.js", "xkcdalt.js" ], "matches": [ "*:\/\/xkcd.com\/*", "*:\/\/xkcd.org\/*", "*:\/\/xkcd.net\/*", "*:\/\/www.xkcd.com\/*", "*:\/\/www.xkcd.org\/*", "*:\/\/www.xkcd.net\/*" ], "run_at": "document_end" } ], "options_page": "options.html", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "name": "XKCD Alt Text", "version": "2.8.1" } |