Show Last Topics

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

Wat is Show Last Topics?

Show Last Topics is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "This extension shows users' topics on Blockland Forums from profile pages and allows sorting by date, title, or board name.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Show Last Topics

Download Show Last Topics-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Show Last Topics Show Last Topics
ID ebhimbgllohbpidengigiocapjiahjgd
Officiële URL https://chromewebstore.google.com/detail/show-last-topics/ebhimbgllohbpidengigiocapjiahjgd
Beschrijving This extension shows users' topics on Blockland Forums from profile pages and allows sorting by date, title, or board name.
Bestandsgrootte 71.2 KB
Aantal Installaties 14
Huidige Versie 2.1
Laatst Bijgewerkt 2016-06-14
Publicatiedatum 2016-06-14
Beoordeling 3.75/5 Totaal 4 Beoordelingen
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}