SOFOCUS

Helps you focus when you use stack overflow. NOT ASSOCIATED WITH STACK OVERFLOW IN ANY WAY.

SOFOCUS क्या है?

SOFOCUS Azimuth Apps द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps you focus when you use stack overflow. NOT ASSOCIATED WITH STACK OVERFLOW IN ANY WAY."।

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

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

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

                        SOFOCUS is a way to clear out the visual noise often experienced when visting stack overflow.  Many times I find myself googling a programming question only to find myself on a page about "My girlfriend cannot stop farting at social events - what should I do?" a few clicks later.  This is largely due to the massive list of questions to the right which distract my attention.

I can't control myself so, of course, I made an extension to do it for me.  It's pretty hacky but it works.                    

एक्सटेंशन की मूल जानकारी

नाम SOFOCUS SOFOCUS
ID jbolnfjpoapedfklembmebhjadcfhohp
आधिकारिक URL https://chrome.google.com/webstore/detail/sofocus/jbolnfjpoapedfklembmebhjadcfhohp
विवरण Helps you focus when you use stack overflow. NOT ASSOCIATED WITH STACK OVERFLOW IN ANY WAY.
फ़ाइल का आकार 217 KB
स्थापना संख्या 48
वर्तमान संस्करण 0.0.1
अंतिम अपडेट 2018-08-09
प्रकाशन तिथि 2018-08-09
डेवलपर Azimuth Apps
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SOFOCUS",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Helps you focus when you use stack overflow.  NOT ASSOCIATED WITH STACK OVERFLOW IN ANY WAY.",
    "homepage_url": "http:\/\/extensionizr.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "page action demo",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "https:\/\/stackoverflow.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/stackoverflow.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/stackoverflow.com\/*"
            ],
            "js": [
                "js\/jquery\/jquery.js",
                "src\/inject\/inject.js"
            ]
        }
    ]
}