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…

Apa itu Facepunch Fixer?

Facepunch Fixer adalah ekstensi Chrome yang dikembangkan oleh Laharl, dan fitur utamanya adalah "Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was…".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Facepunch Fixer

Unduh file ekstensi Facepunch Fixer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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, 

Informasi Dasar Ekstensi

Nama Facepunch Fixer Facepunch Fixer
ID bpfmgikmjbhelahhkefalkabjhoddped
URL Resmi https://chrome.google.com/webstore/detail/facepunch-fixer/bpfmgikmjbhelahhkefalkabjhoddped
Deskripsi Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was…
Ukuran File 35.25 KB
Jumlah Instalasi 34
Versi Saat Ini 1.4.3
Terakhir Diperbarui 2018-03-24
Tanggal Publikasi 2018-03-24
Penilaian 5.00/5 Total 2 Penilaian
Pengembang Laharl
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://forum.facepunch.com/f/meta/bskxx/1/
Bahasa yang Didukung 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\/"
    ]
}