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…
Was ist Facepunch Fixer?
Facepunch Fixer ist eine Chrome-Erweiterung, die von Laharl entwickelt wurde, und ihr Hauptmerkmal ist "Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was…".
Erweiterungsscreenshots
Facepunch Fixer-Erweiterungs-CRX-Datei herunterladen
Laden Sie Facepunch Fixer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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,
Grundlegende Informationen zur Erweiterung
Name | ![]() |
ID | bpfmgikmjbhelahhkefalkabjhoddped |
Offizielle URL | https://chrome.google.com/webstore/detail/facepunch-fixer/bpfmgikmjbhelahhkefalkabjhoddped |
Beschreibung | Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was… |
Dateigröße | 35.25 KB |
Installationsanzahl | 34 |
Aktuelle Version | 1.4.3 |
Letztes Update | 2018-03-24 |
Veröffentlichungsdatum | 2018-03-24 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Laharl |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://forum.facepunch.com/f/meta/bskxx/1/ |
Unterstützte Sprachen | 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\/" ] } |