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…

O que é Facepunch Fixer?

Facepunch Fixer é uma extensão do Chrome desenvolvida por Laharl, e sua principal característica é "Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Facepunch Fixer

Baixe arquivos de extensão Facepunch Fixer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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, 

Informações Básicas da Extensão

Nome Facepunch Fixer Facepunch Fixer
ID bpfmgikmjbhelahhkefalkabjhoddped
URL Oficial https://chrome.google.com/webstore/detail/facepunch-fixer/bpfmgikmjbhelahhkefalkabjhoddped
Descrição Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was…
Tamanho do Arquivo 35.25 KB
Contagem de Instalações 34
Versão Atual 1.4.3
Última Atualização 2018-03-24
Data de Publicação 2018-03-24
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Laharl
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://forum.facepunch.com/f/meta/bskxx/1/
Idiomas Suportados 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\/"
    ]
}