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…”。

擴展截圖

screenshot
screenshot

下載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, 

擴展基本資訊

名稱 Facepunch Fixer Facepunch Fixer
ID bpfmgikmjbhelahhkefalkabjhoddped
官方網址 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\/"
    ]
}