Cookie Clicker, Chrome Syncer
This extension allows you to save your game to your chrome.storage (online) space and load it anywhere.
Cookie Clicker, Chrome Syncer란 무엇입니까?
Cookie Clicker, Chrome Syncer은(는) Brian M에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to save your game to your chrome.storage (online) space and load it anywhere."입니다.
Cookie Clicker, Chrome Syncer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension serves two main purposes: 1. It backs up your game to Chrome's builtin storage (chrome.storage API). This allows you to load your Cookie Clicker save from any Chrome browser that you are logged into*. If you are logged into multiple browsers at the same time and running multiple instances of the game, the game with the highest HC/total cookie count will be used. 2. It allows you to send a saved game to your home (or other) computer automatically. You set (one or more) browsers to "primary" and when you decide, you can tell all "primary" browsers to load your current game. This allows you to login from a friends house (or work/school), make changes to your game, then send them back to your home computer so you can continue earning cookies. Author note: This extension was built to meet my personal needs. While I am open to feature requests, I do not intend on growing this project into anything larger than it should be. Please report any defects or bugs, I am certainly interested in fixing those ASAP. *Chrome must be signed in and this extension must be installed anywhere you want to save/load a game.
확장 프로그램 기본 정보
이름 | |
ID | aapfoikfhpcloablpfigiihnlnlhggjn |
공식 URL | https://chrome.google.com/webstore/detail/cookie-clicker-chrome-syn/aapfoikfhpcloablpfigiihnlnlhggjn |
설명 | This extension allows you to save your game to your chrome.storage (online) space and load it anywhere. |
파일 크기 | 13.28 KB |
설치 횟수 | 626 |
현재 버전 | 1.2 |
최근 업데이트 | 2014-06-09 |
출시 날짜 | 2014-06-09 |
평점 | 2.40/5 총 5 개의 평점 |
개발자 | Brian M |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cookie Clicker, Chrome Syncer", "description": "This extension allows you to save your game to your chrome.storage (online) space and load it anywhere.", "version": "1.2", "browser_action": { "default_icon": { "19": "images\/cookie19.png", "38": "images\/cookie38.png" } }, "permissions": [ "storage", "http:\/\/orteil.dashnet.org\/cookieclicker\/*" ], "content_scripts": [ { "matches": [ "http:\/\/orteil.dashnet.org\/*" ], "js": [ "setup.js" ] } ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "content.js" ], "externally_connectable": { "matches": [ "http:\/\/orteil.dashnet.org\/*" ] } } |