Tribalwars Millisecond Clock

Adds a millisecond clock to the tribalwars page

Tribalwars Millisecond Clock란 무엇입니까?

Tribalwars Millisecond Clock은(는) Ryan Davis에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a millisecond clock to the tribalwars page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Tribalwars Millisecond Clock 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension adds a clock to the side of the screen in tribal wars which includes the milliseconds, to make timing your attacks super precise! There is also an offset adjuster to ensure you get the exact right millisecond as the server time.

**Updates**
Version 3.0 - Includes support for all the tribal wars domains available from their site.                    

확장 프로그램 기본 정보

이름 Tribalwars Millisecond Clock Tribalwars Millisecond Clock
ID ockippfhjpjfmdkhdcjecepcleopfamm
공식 URL https://chromewebstore.google.com/detail/tribalwars-millisecond-cl/ockippfhjpjfmdkhdcjecepcleopfamm
설명 Adds a millisecond clock to the tribalwars page
파일 크기 8.98 KB
설치 횟수 1,042
현재 버전 3.0
최근 업데이트 2020-08-05
출시 날짜 2020-06-02
평점 4.13/5 총 8 개의 평점
개발자 Ryan Davis
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tribalwars Millisecond Clock",
    "version": "3.0",
    "description": "Adds a millisecond clock to the tribalwars page",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        }
    },
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.die-staemme.de\/*",
                "*:\/\/*.divoke-kmene.sk\/*",
                "*:\/\/*.divokekmeny.cz\/*",
                "*:\/\/*.fyletikesmaxes.gr\/*",
                "*:\/\/*.guerrastribales.es\/*",
                "*:\/\/*.guerretribale.fr\/*",
                "*:\/\/*.klanhaboru.hu\/*",
                "*:\/\/*.klanlar.org\/*",
                "*:\/\/*.plemena.com\/*",
                "*:\/\/*.plemiona.pl\/*",
                "*:\/\/*.staemme.ch\/*",
                "*:\/\/*.tribals.it\/*",
                "*:\/\/*.tribalwars.ae\/*",
                "*:\/\/*.tribalwars.asia\/*",
                "*:\/\/*.tribalwars.co.uk\/*",
                "*:\/\/*.tribalwars.com.br\/*",
                "*:\/\/*.tribalwars.com.pt\/*",
                "*:\/\/*.tribalwars.com\/*",
                "*:\/\/*.tribalwars.dk\/*",
                "*:\/\/*.tribalwars.net\/*",
                "*:\/\/*.tribalwars.nl\/*",
                "*:\/\/*.tribalwars.se\/*",
                "*:\/\/*.tribalwars.us\/*",
                "*:\/\/*.tribalwars.works\/*",
                "*:\/\/*.triburile.ro\/*",
                "*:\/\/*.vojnaplemen.si\/*",
                "*:\/\/*.voyna-plemyon.ru\/*"
            ],
            "css": [
                "myStyles.css"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "manifest_version": 2
}