Pardus Bookkeeper

User trade interface enhancements for the online game Pardus

ما هو Pardus Bookkeeper؟

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

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Enhancements to the trading user interface of the online game Pardus (www.pardus.at).

Track all the buildings you upkeep, see the ticks they have remaining right from the nav screen, or look at the full list and see what each building is selling and buying, from wherever you are.                    

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

الاسم Pardus Bookkeeper Pardus Bookkeeper
ID dfelhcfikpiomockabkkcjgfigdalcmk
عنوان URL الرسمي https://chromewebstore.google.com/detail/pardus-bookkeeper/dfelhcfikpiomockabkkcjgfigdalcmk
الوصف User trade interface enhancements for the online game Pardus
حجم الملف 86.59 KB
عدد التثبيتات 140
النسخة الحالية 2.3
آخر تحديث 2017-10-10
تاريخ النشر 2017-10-10
تقييم 5.00/5 مجموع تقييمات 4
المطور Val
نوع الدفع free
موقع الإضافة https://github.com/BartKieviet/Copilot
عنوان صفحة المساعدة https://github.com/BartKieviet/Copilot/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "background": {
        "scripts": [
            "sector.js",
            "building.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.pardus.at\/building_trade.php*"
            ],
            "js": [
                "functions.js",
                "sector.js",
                "building.js",
                "commodity.js",
                "trade.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.pardus.at\/overview_buildings.php*"
            ],
            "js": [
                "functions.js",
                "sector.js",
                "building.js",
                "commodity.js",
                "table.js",
                "filter.js",
                "overview.js",
                "overviewbuildings.js"
            ],
            "css": [
                "bookkeeper.css"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.pardus.at\/main.php*"
            ],
            "js": [
                "nav.js"
            ],
            "css": [
                "nav.css"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.pardus.at\/index_buildings.php*"
            ],
            "js": [
                "functions.js",
                "sector.js",
                "building.js",
                "commodity.js",
                "bldgindex.js"
            ],
            "css": [
                "bookkeeper.css"
            ],
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/*.pardus.at\/building_trade_settings.php*"
            ],
            "js": [
                "functions.js",
                "building.js",
                "buildingtradesettings.js"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.pardus.at\/building_management.php*"
            ],
            "js": [
                "functions.js",
                "building.js",
                "sector.js",
                "management.js"
            ],
            "css": [
                "bookkeeper.css"
            ],
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/*.pardus.at\/planet_trade.php*",
                "*:\/\/*.pardus.at\/starbase_trade.php*"
            ],
            "js": [
                "\/functions.js",
                "\/commodity.js",
                "\/sector.js",
                "\/building.js",
                "\/table.js",
                "\/filter.js",
                "\/overview.js",
                "overlay.js",
                "starbasetrade.js"
            ],
            "css": [
                "nav.css",
                "bookkeeper.css"
            ],
            "all_frames": true
        }
    ],
    "description": "User trade interface enhancements for the online game Pardus",
    "manifest_version": 2,
    "minimum_chrome_version": "61",
    "name": "Pardus Bookkeeper",
    "permissions": [
        "notifications",
        "storage",
        "*:\/\/*.pardus.at\/*"
    ],
    "version": "2.3",
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "64": "icons\/64.png"
        },
        "default_title": "Pardus Bookkeeper",
        "default_popup": "popup.html",
        "browser_style": true
    },
    "icons": {
        "16": "icons\/16.png",
        "24": "icons\/24.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "icons\/16.png",
        "icons\/24.png",
        "icons\/48.png",
        "icons\/clear.svg",
        "icons\/cleardim.svg",
        "icons\/pos.svg",
        "icons\/posdim.svg",
        "icons\/projoff.svg",
        "icons\/projoffdim.svg",
        "icons\/projon.svg",
        "icons\/projondim.svg",
        "icons\/remove.svg",
        "icons\/removedim.svg",
        "html\/bbox.html"
    ]
}