Twitter Timeline Auto Update
Updates the twitter timeline automatically when new tweets can be shown.
Twitter Timeline Auto Update란 무엇입니까?
Twitter Timeline Auto Update은(는) https://systemcluster.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Updates the twitter timeline automatically when new tweets can be shown."입니다.
확장 프로그램 스크린샷
Twitter Timeline Auto Update 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Twitter Auto Update updates the twitter timeline automatically, removing the need of the additional user interaction each time new tweets should be shown. By default the extension only updates the timeline while it isn't scrolled down, an option is provided to enable unconditional updates.
확장 프로그램 기본 정보
이름 | Twitter Timeline Auto Update |
ID | ddbjabcmjjifognjcopebcllgpbdjlbm |
공식 URL | https://chromewebstore.google.com/detail/twitter-timeline-auto-upd/ddbjabcmjjifognjcopebcllgpbdjlbm |
설명 | Updates the twitter timeline automatically when new tweets can be shown. |
파일 크기 | 23.5 KB |
설치 횟수 | 1,085 |
현재 버전 | 0.3 |
최근 업데이트 | 2018-07-28 |
출시 날짜 | 2018-07-28 |
평점 | 3.33/5 총 9 개의 평점 |
개발자 | https://systemcluster.me |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Timeline Auto Update", "short_name": "Twitter Refresh", "description": "Updates the twitter timeline automatically when new tweets can be shown.", "version": "0.3", "options_ui": { "page": "chrome\/content\/settings_inline.html", "chrome_style": true }, "icons": { "64": "chrome\/skin\/icon64.png", "128": "chrome\/skin\/icon128.png", "256": "chrome\/skin\/icon256.png" }, "background": { "scripts": [ "lib\/background.js" ] }, "content_scripts": [ { "js": [ "lib\/inject.js" ], "matches": [ "*:\/\/twitter.com\/*" ], "run_at": "document_end" } ], "permissions": [ "*:\/\/twitter.com\/*" ] } |