LogDog - Logger for Dominion Online

Keep track of your Dominion.Games logs.

LogDog - Logger for Dominion Online란 무엇입니까?

LogDog - Logger for Dominion Online은(는) logdogdeveloper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keep track of your Dominion.Games logs."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

LogDog - Logger for Dominion Online 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        LogDog is a Chrome extension that will keep track of your games on Dominion.Games. Everytime you play a game of Dominion, LogDog will constantly keep track of the Log for you and store it locally in Chrome (the logs are not synched between computers! You can move your logs between computers using the backup functions from the options page).

Now you can come back to your logs anytime in a manner of seconds and save them on your computer to do some fancy analysis yourself or copy them for use in other apps like Windominion.com.

Just click on the LogDog logo next to your adress bar on the right to get access to all your stored logs, filter for players and dates as well as rerun a match against a bot or another player by reloading the kingdom as a new game.

Go to "More Options" or right-click on the extension and select "options" to Access the options page. There you can again filter for certain players or dates, backup and restore your logs and also view all your logs as in the popup, and change the behaviour of LogDog.

The source code for log dog is hosted on github (https://www.github.com/michaelgoetze/LogDog                    

확장 프로그램 기본 정보

이름 LogDog - Logger for Dominion Online LogDog - Logger for Dominion Online
ID ghcfiomipllgpdpifodecegjoljheinf
공식 URL https://chromewebstore.google.com/detail/logdog-logger-for-dominio/ghcfiomipllgpdpifodecegjoljheinf
설명 Keep track of your Dominion.Games logs.
파일 크기 37.5 MB
설치 횟수 58
현재 버전 0.0.14
최근 업데이트 2020-06-23
출시 날짜 2020-06-22
평점 5.00/5 총 4 개의 평점
개발자 logdogdeveloper
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/michaelgoetze/LogDog
도움말 페이지 URL https://github.com/michaelgoetze/LogDog/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LogDog - Logger for Dominion Online",
    "version": "0.0.14",
    "manifest_version": 2,
    "description": "Keep track of your Dominion.Games logs.",
    "page_action": {
        "default_icon": {
            "32": "images\/LogDog32.png",
            "64": "images\/LogDog64.png",
            "256": "images\/LogDog256.png"
        },
        "default_popup": "popup.html"
    },
    "permissions": [
        "downloads",
        "storage",
        "unlimitedStorage",
        "*:\/\/dominion.games\/*"
    ],
    "icons": {
        "32": "images\/LogDog32.png",
        "128": "images\/icon.png",
        "256": "images\/LogDog256.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/dominion.games\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}