Tibia.com enhancer

Improve the user experience on Tibia.com.

ما هو Tibia.com enhancer؟

Tibia.com enhancer هو إضافة Chrome تم تطويرها بواسطة Mathias Bynens، والميزة الرئيسية لها هي "Improve the user experience on Tibia.com.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Tibia.com enhancer

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

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

                        The extension does a couple of things all around the website:

* It skips the annoying intro page on Tibia.com.
* It shows permanent links for news entries and individual forum posts.
* On guild info pages, it makes any guild’s guildhall name clickable _without_ introducing additional XHR requests.
* On house or guildhall detail pages, it makes sure the URL displayed in the address bar is always a permalink to the building you’re currently viewing, so that you can always easily copy-paste a permalink to the active page.
* On character bazaar auction detail pages, it simplifies and canonicalizes the URL displayed in the address bar.
* On character bazaar pages, it displays a tooltip showing the cost in EUR when hovering over Tibia Coin prices based on the cheapest store offerings.

The extension enhances character info pages as follows:

* It adds links to the character’s PvP history, online time, and experience history as shown on third-party websites.
* It puts the focus on the first link in the character details table, so it’s easier to move to the other relevant links using keyboard navigation.
* Any character names that are currently online on the same world according to the “Players Online” page are highlighted. Also, the level and vocation cells are updated and highlighted if they changed since the character’s last login.
* It makes the character name easily selectable for copy-pasting — just click once on the character name to select it.
* It makes the world name clickable — it points to the “who’s online?” list for that particular game world.
* It makes house names clickable _without_ introducing additional XHR requests (unlike other, similar extensions). All house IDs are hardcoded into the extension. The link points to the detail page of the house in question.
* It makes sure the URL displayed in the address bar is always a permalink to the character profile you’re currently viewing, so that you can always easily copy-paste a permalink to the active profile page. (When entering a character name on the website, it performs a `POST` request and the character name isn’t part of the URL. The extension fixes that too.)
* It works around CipSoft’s overly aggressing caching on e.g. character detail pages, effectively “fixing” F5 behavior on those pages. (Without the extension, refreshing the page still sometimes results in an outdated response.)                    

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

الاسم Tibia.com enhancer Tibia.com enhancer
ID nffjdandbhengjofneamfibpichapjbb
عنوان URL الرسمي https://chromewebstore.google.com/detail/tibiacom-enhancer/nffjdandbhengjofneamfibpichapjbb
الوصف Improve the user experience on Tibia.com.
حجم الملف 51.55 KB
عدد التثبيتات 169
النسخة الحالية 2.1.9
آخر تحديث 2023-12-13
تاريخ النشر 2020-03-15
تقييم 4.78/5 مجموع تقييمات 9
المطور Mathias Bynens
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/mathiasbynens/tibia.com-extension
عنوان صفحة المساعدة https://github.com/mathiasbynens/tibia.com-extension/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tibia.com enhancer",
    "description": "Improve the user experience on Tibia.com.",
    "author": "Mathias Bynens",
    "version": "2.1.9",
    "homepage_url": "https:\/\/mths.be\/tibiauserjs",
    "icons": {
        "48": "img\/icon-48.png",
        "64": "img\/icon-64.png",
        "128": "img\/icon-128.png",
        "256": "img\/icon-256.png"
    },
    "permissions": [
        "declarativeNetRequest",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.tibia.com\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "bypass-cache",
                "enabled": true,
                "path": "rules\/bypass-cache.json"
            }
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*.tibia.com\/*",
                "https:\/\/*.tibia.com\/*"
            ],
            "css": [
                "css\/common.css"
            ],
            "js": [
                "data\/buildings.js",
                "js\/common.js",
                "js\/skip-intro.js",
                "js\/bazaar.js",
                "js\/building.js",
                "js\/character.js",
                "js\/guild.js",
                "js\/world.js",
                "js\/forum.js",
                "js\/news.js",
                "js\/highscores.js",
                "js\/kill-statistics.js"
            ]
        }
    ]
}