Facepunch Fixer

Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was…

Hvad er Facepunch Fixer?

Facepunch Fixer er en Chrome-udvidelse udviklet af Laharl, og dens hovedfunktion er "Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was…".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Facepunch Fixer-udvidelses-CRX-fil

Download Facepunch Fixer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Every piece of functionality is now an option that can be enabled/disabled from the options page.

Media in quoted posts that was embedded in the original post will now be embedded in the quote.  There is more than likely an error with this somewhere, but I haven't found any yet.  Can definitely cause some weird formatting.  Works (usually) for:  tags, 

Grundlæggende oplysninger om udvidelsen

Navn Facepunch Fixer Facepunch Fixer
ID bpfmgikmjbhelahhkefalkabjhoddped
Officiel URL https://chrome.google.com/webstore/detail/facepunch-fixer/bpfmgikmjbhelahhkefalkabjhoddped
Beskrivelse Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was…
Filstørrelse 35.25 KB
Antal Installationer 34
Nuværende Version 1.4.3
Senest Opdateret 2018-03-24
Udgivelsesdato 2018-03-24
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Laharl
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://forum.facepunch.com/f/meta/bskxx/1/
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Facepunch Fixer",
    "options_page": "options.html",
    "version": "1.4.3",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/forum.facepunch.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png",
        "64": "icon.png",
        "32": "icon.png",
        "16": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "storage",
        "https:\/\/forum.facepunch.com\/"
    ]
}