Extented ESO Forum

Simple plugin to extend the ESO forum.

Was ist Extented ESO Forum?

Extented ESO Forum ist eine Chrome-Erweiterung, die von zskullfox entwickelt wurde, und ihr Hauptmerkmal ist "Simple plugin to extend the ESO forum.".

Erweiterungsscreenshots

screenshot

Extented ESO Forum-Erweiterungs-CRX-Datei herunterladen

Laden Sie Extented ESO Forum-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This plugin extend the Elder Scrolls Online Forum.
It removes the oversized header and add a bar for the live serverstatus.
It also adds endless scrolling in the discussions and a "Hide nerf threads" option.                    

Grundlegende Informationen zur Erweiterung

Name Extented ESO Forum Extented ESO Forum
ID nkbgandjpcgmdjkdokndjnhpimplpffc
Offizielle URL https://chromewebstore.google.com/detail/extented-eso-forum/nkbgandjpcgmdjkdokndjnhpimplpffc
Beschreibung Simple plugin to extend the ESO forum.
Dateigröße 74.33 KB
Installationsanzahl 11
Aktuelle Version 0.1.3
Letztes Update 2017-08-14
Veröffentlichungsdatum 2017-08-14
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler zskullfox
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Extented ESO Forum",
    "version": "0.1.3",
    "description": "Simple plugin to extend the ESO forum.",
    "homepage_url": "https:\/\/github.com\/Skullfox\/extented-eso-forum",
    "web_accessible_resources": [
        "jquery.min.js",
        "content.js",
        "css\/*.css"
    ],
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "icon\/48.png",
        "default_popup": "options.html",
        "default_title": "Extended Eso Forum"
    },
    "content_scripts": [
        {
            "css": [
                "css\/style.css"
            ],
            "js": [
                "js\/jquery.min.js",
                "js\/content.js"
            ],
            "matches": [
                "https:\/\/forums.elderscrollsonline.com\/*",
                "http:\/\/www.elderscrollsonline.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon\/128.png",
        "16": "icon\/16.png",
        "48": "icon\/48.png"
    },
    "permissions": [
        "https:\/\/live-services.elderscrollsonline.com\/status\/realms",
        "storage"
    ]
}