Doge for Chrome
5% chance of doge every time you load page
Doge for Chrome란 무엇입니까?
Doge for Chrome은(는) Jared Silver에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "5% chance of doge every time you load page"입니다.
확장 프로그램 스크린샷
Doge for Chrome 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Such random. Many doge. Very 5% chance. Do you need a little more doge in your life? Does the monotony of your day-to-day life make you want to bang your head against your desk? Drown in boredom no longer — introducing Doge for Chrome! Doge for Chrome is an extension that will randomly display a delightful doge animation a small percentage of the time you load a new web page. Studying for school got you down? Upset about the price of doge coin? Wish you had more friends? Cheer up instantly with this delightful doge animation, coming soon to a browser near you!
확장 프로그램 기본 정보
이름 | Doge for Chrome |
ID | hgbjmjjpoakdcllgikgchblebfclefii |
공식 URL | https://chromewebstore.google.com/detail/doge-for-chrome/hgbjmjjpoakdcllgikgchblebfclefii |
설명 | 5% chance of doge every time you load page |
파일 크기 | 138 KB |
설치 횟수 | 3,435 |
현재 버전 | 2.0 |
최근 업데이트 | 2021-06-07 |
출시 날짜 | 2016-05-16 |
평점 | 4.30/5 총 50 개의 평점 |
개발자 | Jared Silver |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Doge for Chrome", "description": "5% chance of doge every time you load page", "version": "2.0", "icons": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "96": "\/images\/icon96.png", "128": "\/images\/icon128.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/icon16.png", "32": "\/images\/icon32.png", "96": "\/images\/icon96.png", "128": "\/images\/icon128.png" } }, "content_scripts": [ { "js": [ "content.js" ], "css": [ "animate.css", "doge.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |