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…
¿Qué es Facepunch Fixer?
Facepunch Fixer es una extensión de Chrome desarrollada por Laharl, y su función principal es "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 Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Facepunch Fixer
Descarga archivos de extensión Facepunch Fixer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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,
Información Básica de la Extensión
Nombre | ![]() |
ID | bpfmgikmjbhelahhkefalkabjhoddped |
URL Oficial | https://chrome.google.com/webstore/detail/facepunch-fixer/bpfmgikmjbhelahhkefalkabjhoddped |
Descripción | Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was… |
Tamaño del Archivo | 35.25 KB |
Cantidad de Instalaciones | 34 |
Versión Actual | 1.4.3 |
Última Actualización | 2018-03-24 |
Fecha de Publicación | 2018-03-24 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | Laharl |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://forum.facepunch.com/f/meta/bskxx/1/ |
Idiomas Soportados | 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\/" ] } |