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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Brian M และคุณลักษณะหลักของมันคือ "This extension allows you to save your game to your chrome.storage (online) space and load it anywhere."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cookie Clicker, Chrome Syncer

ดาวน์โหลดไฟล์ส่วนขยาย Cookie Clicker, Chrome Syncer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Cookie Clicker, Chrome Syncer Cookie Clicker, Chrome Syncer
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\/*"
        ]
    }
}