Pardus Sweetener T

User interface enhancements for the online game Pardus. Combines multiple forks.

Pardus Sweetener T란 무엇입니까?

Pardus Sweetener T은(는) tsunders에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "User interface enhancements for the online game Pardus. Combines multiple forks."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Pardus Sweetener T 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Fork of the original Pardus Sweetener, User interface enhancements for the online game Pardus.

Major changes from the original:

* Tick based clocks for consumables
* Minimap pathfinder
* Mission tracker

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 T Pardus Sweetener T
ID oljkdelpabjlpofhomedemighchghfik
공식 URL https://chromewebstore.google.com/detail/pardus-sweetener-t/oljkdelpabjlpofhomedemighchghfik
설명 User interface enhancements for the online game Pardus. Combines multiple forks.
파일 크기 533 KB
설치 횟수 267
현재 버전 9.8.2
최근 업데이트 2023-01-05
출시 날짜 2020-05-08
개발자 tsunders
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://forum.pardus.at/index.php?showtopic=62190
도움말 페이지 URL https://github.com/Tsunder/Pardus-Sweetener/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "cfgset.js",
                "shiplinks.js",
                "sector.js",
                "map.js",
                "universe.js",
                "missions.js",
                "nav.js"
            ],
            "css": [
                "nav.css"
            ],
            "matches": [
                "*:\/\/*.pardus.at\/main.php*"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "cfgset.js",
                "universe.js",
                "shiplinks.js",
                "missions.js",
                "combat.js"
            ],
            "matches": [
                "*:\/\/*.pardus.at\/ship2ship_combat.php*",
                "*:\/\/*.pardus.at\/ship2opponent_combat.php*",
                "*:\/\/*.pardus.at\/building.php*"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "slicer.js",
                "myalliance.js"
            ],
            "matches": [
                "*:\/\/*.pardus.at\/myalliance.php*"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "cfgset.js",
                "universe.js",
                "ambush.js"
            ],
            "matches": [
                "*:\/\/*.pardus.at\/ambush.php*"
            ]
        },
        {
            "all_frames": false,
            "js": [
                "sendmsg.js"
            ],
            "matches": [
                "*:\/\/*.pardus.at\/sendmsg.php*"
            ]
        },
        {
            "all_frames": false,
            "js": [
                "universe.js",
                "clock.js",
                "sector.js",
                "game.js"
            ],
            "matches": [
                "*:\/\/*.pardus.at\/game.php*"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "cfgset.js",
                "universe.js",
                "onlinelist.js"
            ],
            "matches": [
                "*:\/\/*.pardus.at\/statistics.php?display=onlinelist"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "universe.js",
                "advskills.js"
            ],
            "matches": [
                "*:\/\/*.pardus.at\/overview_advanced_skills.php"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "cfgset.js",
                "universe.js",
                "sector.js",
                "missions.js",
                "bulletinboard.js"
            ],
            "matches": [
                "*:\/\/*.pardus.at\/bulletin_board.php*"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "cfgset.js",
                "universe.js",
                "sector.js",
                "missions.js",
                "jobs.js"
            ],
            "matches": [
                "*:\/\/*.pardus.at\/overview_jobs.php*"
            ]
        },
        {
            "all_frames": true,
            "js": [
                "cfgset.js",
                "universe.js",
                "missions.js",
                "planetsb.js"
            ],
            "matches": [
                "*:\/\/*.pardus.at\/planet.php*",
                "*:\/\/*.pardus.at\/starbase.php*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "description": "User interface enhancements for the online game Pardus. Combines multiple forks.",
    "icons": {
        "128": "icons\/128.png",
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "42",
    "name": "Pardus Sweetener T",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "page_action": {
        "default_icon": "icons\/19.png",
        "default_popup": "popup.html",
        "default_title": "Change Pardus Sweetener T settings"
    },
    "permissions": [
        "notifications",
        "storage",
        "*:\/\/*.pardus.at\/*"
    ],
    "version": "9.8.2",
    "web_accessible_resources": [
        "icons\/16.png",
        "icons\/48.png",
        "icons\/down.png"
    ]
}