Show Last Topics

This extension shows users' topics on Blockland Forums from profile pages and allows sorting by date, title, or board name.

Was ist Show Last Topics?

Show Last Topics ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "This extension shows users' topics on Blockland Forums from profile pages and allows sorting by date, title, or board name.".

Erweiterungsscreenshots

screenshot
screenshot

Show Last Topics-Erweiterungs-CRX-Datei herunterladen

Laden Sie Show Last Topics-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

                        Blockland Forums provides no way to view all of a user's topics in one place. This extension fixes that issue by adding an option at the bottom of all profile pages. When this option is clicked, a list of all the user's topics will appear on the same page with options to sort by date, topic name, and board name.                    

Grundlegende Informationen zur Erweiterung

Name Show Last Topics Show Last Topics
ID ebhimbgllohbpidengigiocapjiahjgd
Offizielle URL https://chromewebstore.google.com/detail/show-last-topics/ebhimbgllohbpidengigiocapjiahjgd
Beschreibung This extension shows users' topics on Blockland Forums from profile pages and allows sorting by date, title, or board name.
Dateigröße 71.2 KB
Installationsanzahl 14
Aktuelle Version 2.1
Letztes Update 2016-06-14
Veröffentlichungsdatum 2016-06-14
Bewertung 3.75/5 Insgesamt 4 Bewertungen
Entwickler Unknown
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Show Last Topics",
    "description": "This extension shows users' topics on Blockland Forums from profile pages and allows sorting by date, title, or board name.",
    "version": "2.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "https:\/\/forum.blockland.us\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/forum.blockland.us\/index.php?action=profile*"
            ],
            "exclude_matches": [
                "https:\/\/forum.blockland.us\/*sa=*"
            ],
            "js": [
                "jquery-1.11.1.min.js",
                "topicsLink.js"
            ],
            "run_at": "document_idle"
        }
    ]
}