Blockr

A simple, lightweight post blocking solution for Tumblr

Blockr क्या है?

Blockr Elizabeth Harper द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple, lightweight post blocking solution for Tumblr"।

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

screenshot

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

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

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

                        Blockr is a post blocker for the popular blogging site Tumblr.  This extension adds a small button to each post which blocks the post from your dashboard. Posts are blocked based on their root post ID so the post will be hidden no matter who reblogs it.

The block button is located at the top right of each post so users can block offensive or unwanted content without having to scroll through the entirety of a post.                    

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

नाम Blockr Blockr
ID hnaljgbbcjabdcibeliipmcifmfeionc
आधिकारिक URL https://chromewebstore.google.com/detail/blockr/hnaljgbbcjabdcibeliipmcifmfeionc
विवरण A simple, lightweight post blocking solution for Tumblr
फ़ाइल का आकार 24.03 KB
स्थापना संख्या 28
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2017-05-01
प्रकाशन तिथि 2017-05-01
रेटिंग 4.25/5 कुल 4 रेटिंग्स
डेवलपर Elizabeth Harper
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/EllieFops/blockr
सहायता पृष्ठ URL https://github.com/EllieFops/blockr/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blockr",
    "description": "A simple, lightweight post blocking solution for Tumblr",
    "version": "1.1.1",
    "author": {
        "name": "Elizabeth Harper",
        "email": "[email protected]",
        "url": "https:\/\/github.com\/EllieFops"
    },
    "incognito": "not_allowed",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.tumblr.com\/dashboard"
            ],
            "css": [
                "css\/blockr.css"
            ],
            "js": [
                "js\/blockr.js"
            ]
        }
    ],
    "icons": {
        "16": "res\/16.png",
        "32": "res\/32.png",
        "48": "res\/48.png",
        "128": "res\/128.png"
    }
}