PenaltyBlox

When following is too much, but unfollowing is too harsh.

PenaltyBlox क्या है?

PenaltyBlox iacono द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "When following is too much, but unfollowing is too harsh."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

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

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

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

                        Whether it is a designer ultra-tweeting about some conference she is at or a venture capitalist intensely describing his pursuit of the always-elusive "inbox zero", sometimes you just want to mute someone you follow on Twitter. This extensions allows you to do just that. You can easily put accounts that you follow and hashtags that you wish would go away in the penalty box, where they will be silenced and feel shame. When you have deemed their sins absolved, you can let them out, free to fill your Twitter stream again.

Open sourced @ https://github.com/jeffreyiacono/penalty-blox ... send me a PR!                    

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

नाम PenaltyBlox PenaltyBlox
ID ajoigckelmnkcjajbeinpkmbndeiokdg
आधिकारिक URL https://chromewebstore.google.com/detail/penaltyblox/ajoigckelmnkcjajbeinpkmbndeiokdg
विवरण When following is too much, but unfollowing is too harsh.
फ़ाइल का आकार 83.72 KB
स्थापना संख्या 90
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2016-06-26
प्रकाशन तिथि 2016-06-26
रेटिंग 4.86/5 कुल 21 रेटिंग्स
डेवलपर iacono
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PenaltyBlox",
    "short_name": "PenaltyBlox",
    "manifest_version": 2,
    "description": "When following is too much, but unfollowing is too harsh.",
    "version": "1.1.1",
    "homepage_url": "http:\/\/penaltyblox.com",
    "minimum_chrome_version": "13.0",
    "content_security_policy": "script-src 'unsafe-eval'; object-src 'self'",
    "icons": {
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "background",
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ],
            "js": [
                "js\/lib\/jquery.js",
                "js\/lib\/underscore.js",
                "js\/core_extensions.js",
                "js\/watcher.js",
                "js\/referee.js",
                "js\/content_script.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Penalty Blox",
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    }
}