Simple Tab Timer
This extension creates a simple timer as a new tab.
Simple Tab Timer란 무엇입니까?
Simple Tab Timer은(는) Apes in Capes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension creates a simple timer as a new tab."입니다.
확장 프로그램 스크린샷
Simple Tab Timer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
If you're looking for a simple tab timer, this is it. Click on the icon, select the time, press START and you're off to the races. Also, if you've found this extension helpful, tell your friends about it!
확장 프로그램 기본 정보
이름 | |
ID | kfnnebepkloaefoekfghncjhfklhoffh |
공식 URL | https://chrome.google.com/webstore/detail/simple-tab-timer/kfnnebepkloaefoekfghncjhfklhoffh |
설명 | This extension creates a simple timer as a new tab. |
파일 크기 | 111 KB |
설치 횟수 | 304 |
현재 버전 | 1.3.1 |
최근 업데이트 | 2022-03-25 |
출시 날짜 | 2019-10-11 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Apes in Capes |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.apesincapes.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Tab Timer", "description": "This extension creates a simple timer as a new tab.", "version": "1.3.1", "icons": { "512": "icon512.png", "128": "icon128.png", "48": "icon48.png", "16": "icon16.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon512.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/*", "http:\/\/www.google.com\/*", "https:\/\/www.google.ca\/*", "http:\/\/www.google.ca\/*", "https:\/\/www.google.co.uk\/*", "http:\/\/www.google.co.uk\/*", "https:\/\/www.google.se\/*", "http:\/\/www.google.se\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |