Crowwwww
A judgmental crow for your browser
Crowwwww란 무엇입니까?
Crowwwww은(는) davidmaamoaix에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A judgmental crow for your browser"입니다.
확장 프로그램 스크린샷
Crowwwww 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The one and only Crow of Judgment, now in your Chrome to judge your life choices. Crowwwww is a Chrome plugin that keeps you from getting distracted by irrelevant websites during your work. Whenever you look at random websites such as Facebook or YouTube, a judgmental crow will appear to stare at you in the eye, forcing you to reconsider your life decisions and go back to work. Settings: - Appear Frequency (seconds): How frequent the crow should appear to judge you. - Stay Duration (seconds): How long the crow should stay each time. Set to -1 for infinite duration. - Crow Size: Crows come in all sizes. Select a crow size in the drop-down menu. - Site List: A list of (work-irrelevant/entertainment) sites on which the crow should appear to remind you to get back to work. Settings are updated after refreshing the page.
확장 프로그램 기본 정보
이름 | |
ID | ijnloopngpeiofbploocgggghjocpgol |
공식 URL | https://chromewebstore.google.com/detail/crowwwww/ijnloopngpeiofbploocgggghjocpgol |
설명 | A judgmental crow for your browser |
파일 크기 | 150 KB |
설치 횟수 | 47 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2021-06-10 |
출시 날짜 | 2021-06-09 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | davidmaamoaix |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/davidmaamoaix/crowwwww |
도움말 페이지 URL | https://github.com/davidmaamoaix/crowwwww/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Crowwwww", "description": "A judgmental crow for your browser", "version": "1.0.0", "manifest_version": 3, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "page_load.js" ] } ], "permissions": [ "storage" ], "action": { "default_popup": "options.html", "default_icon": { "16": "\/images\/crow_icon.png", "32": "\/images\/crow_icon.png", "64": "\/images\/crow_icon.png", "128": "\/images\/crow_icon.png" } }, "icons": { "16": "\/images\/crow_icon.png", "32": "\/images\/crow_icon.png", "64": "\/images\/crow_icon.png", "128": "\/images\/crow_icon.png" }, "web_accessible_resources": [ { "resources": [ "crows\/crow.jpg", "crows\/crow_hd.jpg" ], "matches": [ "*:\/\/*\/*" ] } ] } |