Pardus Drug Clock

Track how many drugs you have consumed within Pardus (a MMORPG set in space) to ensure that you don't become too drugged.

Pardus Drug Clockคืออะไร?

Pardus Drug Clock เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Miche และคุณลักษณะหลักของมันคือ "Track how many drugs you have consumed within Pardus (a MMORPG set in space) to ensure that you don't become too drugged."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pardus Drug Clock

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

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

                        The Drug Clock does not send any data anywhere - it counts when you use drugs (from a blocking building, combat or the nav screen) and displays how long you have until you are "clean" (no longer under the influence of drugs), as well as how drugged you are (which considers Trip Control and your Meditation level) when on the nav screen or on the logout screen.

You can control the settings for each universe, including different levels of meditation and whether you have trip control or not.                    

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

ชื่อ Pardus Drug Clock Pardus Drug Clock
ID clncapanfphbkpplhodnmhbpjfdjkbok
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pardus-drug-clock/clncapanfphbkpplhodnmhbpjfdjkbok
คำอธิบาย Track how many drugs you have consumed within Pardus (a MMORPG set in space) to ensure that you don't become too drugged.
ขนาดไฟล์ 27.02 KB
จำนวนการติดตั้ง 62
เวอร์ชันปัจจุบัน 1.6.0
อัปเดตครั้งล่าสุด 2019-03-20
วันที่เผยแพร่ 2019-03-20
คะแนน 3.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Miche
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pardus Drug Clock",
    "author": "Miche",
    "version": "1.6.0",
    "description": "Track how many drugs you have consumed within Pardus (a MMORPG set in space) to ensure that you don't become too drugged.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "64": "icons\/icon_64.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/orion.pardus.at\/main.php*",
                "*:\/\/orion.pardus.at\/building.php",
                "*:\/\/orion.pardus.at\/logout.php",
                "*:\/\/orion.pardus.at\/ship2ship_combat.php*",
                "*:\/\/orion.pardus.at\/ship2opponent_combat.php*",
                "*:\/\/artemis.pardus.at\/main.php*",
                "*:\/\/artemis.pardus.at\/building.php",
                "*:\/\/artemis.pardus.at\/logout.php",
                "*:\/\/artemis.pardus.at\/ship2ship_combat.php*",
                "*:\/\/artemis.pardus.at\/ship2opponent_combat.php*",
                "*:\/\/pegasus.pardus.at\/main.php*",
                "*:\/\/pegasus.pardus.at\/building.php",
                "*:\/\/pegasus.pardus.at\/logout.php",
                "*:\/\/pegasus.pardus.at\/ship2ship_combat.php*",
                "*:\/\/pegasus.pardus.at\/ship2opponent_combat.php*"
            ],
            "js": [
                "drugclock.js"
            ],
            "css": [
                "drugclock.css"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/icon_16.png",
            "32": "icons\/icon_32.png",
            "64": "icons\/icon_64.png",
            "128": "icons\/icon_128.png"
        },
        "default_title": "Pardus Drug Clock",
        "default_popup": "popup\/popup.html",
        "default_area": "navbar"
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "images\/*.png"
    ]
}