Youtube Time Keeper
Retain your point in videos even after browser crashes and restarts
Youtube Time Keeper란 무엇입니까?
Youtube Time Keeper은(는) daffy1234에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Retain your point in videos even after browser crashes and restarts"입니다.
확장 프로그램 스크린샷
Youtube Time Keeper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A simple extension to keep the current time of Youtube videos in the address bar. Every second, the URL is updated to contain "t=[current time]". This makes videos resume where they left off in the event that chrome is closed accidentally, crashes, or a tab is suspended through another means such as with the extension "The Great Suspender". Known issues: - Hourglass button looks broken in full screen mode 0.0.0.7: - Fixed an issue resulting in the tab icon blinking sometimes, or sometimes causing a memory leak. 0.0.0.6: - Minor changes - Icon and screenshot added 0.0.0.5: - Hourglass button turns red when timer is disabled - URL is updated to look like "t=3m21s" instead of "t=201" for times over a minute 0.0.0.4: - Fixed cases where the button may not show until after the page fully loads 0.0.0.3: - Added a button on youtube videos to disable the timer. Useful when sharing videos from the beginning. 0.0.0.2: - fixed a bug that spammed the right click menu of the back button
확장 프로그램 기본 정보
이름 | Youtube Time Keeper |
ID | najpdcckclgkfilhecdmghhndhkcpoma |
공식 URL | https://chromewebstore.google.com/detail/youtube-time-keeper/najpdcckclgkfilhecdmghhndhkcpoma |
설명 | Retain your point in videos even after browser crashes and restarts |
파일 크기 | 42.91 KB |
설치 횟수 | 215 |
현재 버전 | 0.0.0.7 |
최근 업데이트 | 2016-01-22 |
출시 날짜 | 2016-01-22 |
평점 | 3.62/5 총 13 개의 평점 |
개발자 | daffy1234 |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Time Keeper", "description": "Retain your point in videos even after browser crashes and restarts", "version": "0.0.0.7", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery.js", "loader.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "timer.js", "hourglass.png" ] } |