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…
Vad är Facepunch Fixer?
Facepunch Fixer är en Chrome-tillägg utvecklad av Laharl, och dess huvudfunktion är "Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was…".
Tilläggsskärmbilder
Ladda ner Facepunch Fixer-förlängningens CRX-fil
Ladda ner Facepunch Fixer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | ![]() |
ID | bpfmgikmjbhelahhkefalkabjhoddped |
Officiell webbadress | https://chrome.google.com/webstore/detail/facepunch-fixer/bpfmgikmjbhelahhkefalkabjhoddped |
Beskrivning | Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was… |
Filstorlek | 35.25 KB |
Antal Installationer | 34 |
Aktuell Version | 1.4.3 |
Senast Uppdaterad | 2018-03-24 |
Publiceringsdatum | 2018-03-24 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Laharl |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://forum.facepunch.com/f/meta/bskxx/1/ |
Stödda Språk | 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\/" ] } |