Pardus Sweetener

User interface enhancements for the online game Pardus

ما هو Pardus Sweetener؟

Pardus Sweetener هو إضافة Chrome تم تطويرها بواسطة Val، والميزة الرئيسية لها هي "User interface enhancements for the online game Pardus".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Pardus Sweetener

قم بتنزيل ملفات الامتداد Pardus Sweetener بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Pardus Sweetener improves your user experience in the online multiplayer game Pardus (www.pardus.at). This extension currently features:

☞ Audible alarm on combat and events
☞ Desktop notifications
☞ Robot autofill function
☞ Missile and rounds autoselection
☞ Stored personal and alliance quicklists
☞ Clocks a la Pardus Clock
☞ Links to attack, trade in the nav screen
☞ Links to equipment, black markets, etc.
☞ Sector minimap in the nav screen
☞ Ship path highlighting
☞ Online names highlighting

For more information, log in to Pardus and see this extension's thread in the in-game forums:
http://forum.pardus.at/index.php?showtopic=62190

To request features or report bugs, please add Issues in the GitHub project page: click "Support" under the Details tab here.                    

معلومات أساسية عن التمديد

الاسم Pardus Sweetener Pardus Sweetener
ID ejnppkfdhdnchkcdblfddedelmbpoklo
عنوان URL الرسمي https://chromewebstore.google.com/detail/pardus-sweetener/ejnppkfdhdnchkcdblfddedelmbpoklo
الوصف User interface enhancements for the online game Pardus
حجم الملف 509 KB
عدد التثبيتات 233
النسخة الحالية 9
آخر تحديث 2018-02-26
تاريخ النشر 2018-02-25
تقييم 4.94/5 مجموع تقييمات 16
المطور Val
نوع الدفع free
عنوان صفحة المساعدة https://github.com/valitas/Pardus-Sweetener/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "bg.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.pardus.at\/main.php*"
            ],
            "js": [
                "cfgset.js",
                "shiplinks.js",
                "map.js",
                "universe.js",
                "nav.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.pardus.at\/ship2ship_combat.php*",
                "*:\/\/*.pardus.at\/ship2opponent_combat.php*",
                "*:\/\/*.pardus.at\/building.php*"
            ],
            "js": [
                "cfgset.js",
                "universe.js",
                "shiplinks.js",
                "combat.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.pardus.at\/myalliance.php*"
            ],
            "js": [
                "slicer.js",
                "myalliance.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.pardus.at\/ambush.php*"
            ],
            "js": [
                "cfgset.js",
                "universe.js",
                "ambush.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.pardus.at\/sendmsg.php*"
            ],
            "js": [
                "sendmsg.js"
            ],
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/*.pardus.at\/game.php*"
            ],
            "js": [
                "universe.js",
                "clock.js",
                "sector.js",
                "game.js"
            ],
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/*.pardus.at\/statistics.php?display=onlinelist"
            ],
            "js": [
                "cfgset.js",
                "universe.js",
                "onlinelist.js"
            ],
            "all_frames": true
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "description": "User interface enhancements for the online game Pardus",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "42",
    "name": "Pardus Sweetener",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "page_action": {
        "default_icon": "icons\/19.png",
        "default_title": "Change Pardus Sweetener settings",
        "default_popup": "popup.html"
    },
    "permissions": [
        "notifications",
        "storage",
        "*:\/\/*.pardus.at\/*"
    ],
    "version": "9",
    "web_accessible_resources": [
        "icons\/16.png",
        "icons\/48.png",
        "icons\/down.png"
    ]
}