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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Facepunch Fixer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक 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\/"
    ]
}