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…
Что такое Facepunch Fixer?
Facepunch Fixer - это расширение Chrome, разработанное Laharl, и его основная функция - "Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was…".
Снимки экрана расширения
Скачать файл CRX расширения Facepunch Fixer
Скачайте файлы расширений Facepunch Fixer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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,
Основная информация о расширении
Название | ![]() |
ID | bpfmgikmjbhelahhkefalkabjhoddped |
Официальный URL | https://chrome.google.com/webstore/detail/facepunch-fixer/bpfmgikmjbhelahhkefalkabjhoddped |
Описание | Every piece of functionality is now an option that can be enabled/disabled from the options page. Media in quoted posts that was… |
Размер файла | 35.25 KB |
Количество установок | 34 |
Текущая Версия | 1.4.3 |
Последнее Обновление | 2018-03-24 |
Дата публикации | 2018-03-24 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Laharl |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://forum.facepunch.com/f/meta/bskxx/1/ |
Поддерживаемые языки | 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\/" ] } |