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文件
下載Cookie Clicker Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } |