Insert Timestamp
Insert Timestamp
Insert Timestamp란 무엇입니까?
Insert Timestamp은(는) Dave Xu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Insert Timestamp"입니다.
확장 프로그램 스크린샷
Insert Timestamp 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
2015-01-28 Dave Xu 1. better position selection 2. bigger numbers 3. bug fix : the clock cannot be seen on youtube web pages. 2015-01-21 Dave Xu This is a simple extention, will only inject real-time clock into current webpage. I develop it just for some tests, wish it could be helpful for other people.
확장 프로그램 기본 정보
이름 | |
ID | hojacnchclkfkdkcadnfogedeppclijb |
공식 URL | https://chrome.google.com/webstore/detail/insert-timestamp/hojacnchclkfkdkcadnfogedeppclijb |
설명 | Insert Timestamp |
파일 크기 | 8.5 KB |
설치 횟수 | 21 |
현재 버전 | 1.1 |
최근 업데이트 | 2015-01-28 |
출시 날짜 | 2015-01-28 |
평점 | 4.00/5 총 1 개의 평점 |
개발자 | Dave Xu |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.linkedin.com/in/yuandaxu |
도움말 페이지 URL | http://xuyuanda.blogspot.com |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Insert Timestamp", "version": "1.1", "manifest_version": 2, "description": "Insert Timestamp", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "activeTab", "*:\/\/www.youtube.com\/*", "http:\/\/*\/*", "https:\/\/*\/*", "unlimitedStorage" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "all_frames": false, "css": [ "show.css" ], "js": [ "cbd.js", "ccc.js" ], "run_at": "document_end" } ] } |