Cookie Clicker Buddy
Let's mod Cookie Clicker!
Cookie Clicker Buddy란 무엇입니까?
Cookie Clicker Buddy은(는) Steven Holms에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Let's mod Cookie Clicker!"입니다.
확장 프로그램 스크린샷
Cookie Clicker Buddy 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A silly little Cookie Clicker (https://orteil.dashnet.org/cookieclicker/) extension I made to enable some mods. Current mods: - Auto click all Golden Cookies on the screen at a rate of 30 times per second See the source code on the homepage
확장 프로그램 기본 정보
이름 | Cookie Clicker Buddy |
ID | pcjgpaoccfljpcenfoonloideeelljih |
공식 URL | https://chromewebstore.google.com/detail/cookie-clicker-buddy/pcjgpaoccfljpcenfoonloideeelljih |
설명 | Let's mod Cookie Clicker! |
파일 크기 | 14.81 KB |
설치 횟수 | 6,336 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2020-02-11 |
출시 날짜 | 2020-02-11 |
평점 | 2.59/5 총 17 개의 평점 |
개발자 | Steven Holms |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/superlinkx/cookie-clicker-buddy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cookie Clicker Buddy", "description": "Let's mod Cookie Clicker!", "version": "1.0.1", "author": "Steven Holms", "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/orteil.dashnet.org\/cookieclicker*" ], "js": [ "scripts\/content.js" ], "run_at": "document_end" } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "permissions": [ "storage", "declarativeContent" ], "page_action": { "default_title": "Cookie Clicker Buddy", "default_popup": "index.html" } } |