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是由Laharl开发的Chrome扩展程序,该扩展的主要功能是“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扩展crx文件
下载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\/" ] } |