Show Last Topics

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

Cos'è Show Last Topics?

Show Last Topics è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension shows users' topics on Blockland Forums from profile pages and allows sorting by date, title, or board name.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Show Last Topics

Scarica i file di estensione Show Last Topics in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Show Last Topics Show Last Topics
ID ebhimbgllohbpidengigiocapjiahjgd
URL Ufficiale https://chromewebstore.google.com/detail/show-last-topics/ebhimbgllohbpidengigiocapjiahjgd
Descrizione This extension shows users' topics on Blockland Forums from profile pages and allows sorting by date, title, or board name.
Dimensione del File 71.2 KB
Conteggio Installazioni 14
Versione Corrente 2.1
Ultimo Aggiornamento 2016-06-14
Data di Pubblicazione 2016-06-14
Valutazione 3.75/5 Totale 4 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}