AutoChan
A 4chan.org extension for expanding images inline and automatically updating the page with new posts.
AutoChan란 무엇입니까?
AutoChan은(는) Jon Sangster에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A 4chan.org extension for expanding images inline and automatically updating the page with new posts."입니다.
확장 프로그램 스크린샷
AutoChan 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension has two primary features: 1. Expanding images in place. Images are downloaded and placed directly in the thread. In the place of each thumbnail, there will instead be a dashed box in which the posted image will be loaded. You can see the dashed box fill in with the image as it downloads. Once the image is downloaded, it will grow to its actual size. If it's a big image, wider than your browser window, it will be sized to fit the window, so you don't have to do any annoying horizontal-scrolling. You can still click on image to open it in a new tab, like before. 2. Automatically adding new replies to the page when they become available. Once you've got a thread open in a tab, you can just leave it open and new replies will be added to the bottom of the page, when they're posted. If the page 404's (or the server goes down, your internet connection dies, etc.) a big, red bar will appear on the bottom of the browser window telling you what happened. To save your (and more importantly, 4chan's) bandwidth, instead of constantly re-downloading the thread and checking for new posts, we simply send a small request to 4chan's server asking the last time the thread was updated and then only downloading the new posts if the thread was updated after the last time we downloaded posts from it.
확장 프로그램 기본 정보
이름 | |
ID | olijinpnmanacholmnpcmgenjpnmpdjh |
공식 URL | https://chrome.google.com/webstore/detail/autochan/olijinpnmanacholmnpcmgenjpnmpdjh |
설명 | A 4chan.org extension for expanding images inline and automatically updating the page with new posts. |
파일 크기 | 51.52 KB |
설치 횟수 | 128 |
현재 버전 | 0.8.4 |
최근 업데이트 | 2013-11-22 |
출시 날짜 | 2013-11-22 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Jon Sangster |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://4chan.ertt.ca |
도움말 페이지 URL | http://4chan.ertt.ca/faq |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AutoChan", "version": "0.8.4", "description": "A 4chan.org extension for expanding images inline and automatically updating the page with new posts.", "icons": { "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "*:\/\/boards.4chan.org\/*\/res\/*" ], "run_at": "document_end", "css": [ "override.css", "autochan.css" ], "js": [ "init.js", "lib\/jquery.js", "Regex.js", "PrimaryDomModification.js", "document_end.js" ] }, { "matches": [ "*:\/\/boards.4chan.org\/*\/res\/*" ], "run_at": "document_idle", "js": [ "init.js", "lib\/jquery.js", "Regex.js", "ImageQueue.js", "PrimaryDomModification.js", "ResizeImage.js", "ResizeAllImages.js", "Updater.js", "HttpErrorNotification.js", "Main.js", "document_idle.js" ] } ], "permissions": [ "*:\/\/boards.4chan.org\/" ] } |