Cookie Clicker Helper
This extension makes various Cookie Clicker functions easier.
Cookie Clicker Helper란 무엇입니까?
Cookie Clicker Helper은(는) tuba.terry에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension makes various Cookie Clicker functions easier."입니다.
확장 프로그램 스크린샷
Cookie Clicker Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Make your CookieClicker gameplay more efficient! Current features: * Provides the total prestige you'll have if you reset. * Gives approximate countdowns before you can buy your next buildings. * Click the cookie to keep an eye on your progress from other tabs! Planned features: * Countdowns for first few building upgrades * Selectable desktop notifications as buildings become available * Estimated values for Frenzies from Golden/Red cookies * Golden Cookie notifications? Cookie Clicker Helper was born out of an experiment in learning how to write Chrome Extensions, so it's a work in progress!
확장 프로그램 기본 정보
이름 | |
ID | iagobhdnbhalgapgknhklgieiehcjlcn |
공식 URL | https://chrome.google.com/webstore/detail/cookie-clicker-helper/iagobhdnbhalgapgknhklgieiehcjlcn |
설명 | This extension makes various Cookie Clicker functions easier. |
파일 크기 | 20.85 KB |
설치 횟수 | 3,000 |
현재 버전 | 0.4.2 |
최근 업데이트 | 2013-10-04 |
출시 날짜 | 2013-10-04 |
평점 | 1.67/5 총 6 개의 평점 |
개발자 | tuba.terry |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cookie Clicker Helper", "description": "This extension makes various Cookie Clicker functions easier.", "version": "0.4.2", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/orteil.dashnet.org\/cookieclicker\/" ], "js": [ "cookieDataGrabber.js" ], "run_at": "document_idle" } ], "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "permissions": [ "tabs", "windows", "http:\/\/orteil.dashnet.org\/cookieclicker\/" ], "browser_action": { "default_icon": { "19": "icon-19.png", "38": "icon-38.png" }, "default_popup": "popup.html" } } |