Blog Comment Killfile

Provides a killfile for certain blogs.

Blog Comment Killfile क्या है?

Blog Comment Killfile fizbin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Provides a killfile for certain blogs."।

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

screenshot
screenshot

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

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

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

                        The intention of this script is to hide the comments of commentors you, the reader, do not wish to hear from. In that respect, it's like an old usenet killfile. It does not affect what other visitors to the site will see.

This is not a tool meant for handling spam, only for an individual comment reader to avoid having to see comments they don't wish to see.

When the script works for a given blog, comments will have a [hush] link near the commentor's name. (visible only on mouseover!) Clicking on that will hide comments from that person from then on.                    

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

नाम Blog Comment Killfile Blog Comment Killfile
ID kpoilnkelonbaapoapibddjaojohnpjf
आधिकारिक URL https://chromewebstore.google.com/detail/blog-comment-killfile/kpoilnkelonbaapoapibddjaojohnpjf
विवरण Provides a killfile for certain blogs.
फ़ाइल का आकार 28.33 KB
स्थापना संख्या 690
वर्तमान संस्करण 0.2.11
अंतिम अपडेट 2017-02-26
प्रकाशन तिथि 2017-02-25
रेटिंग 4.19/5 कुल 21 रेटिंग्स
डेवलपर fizbin
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/fizbin/killfile-extension
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Blog Comment Killfile",
    "short_name": "killfile",
    "description": "Provides a killfile for certain blogs.",
    "background": {
        "scripts": [
            "serverload.js",
            "define.js",
            "scenarios.js",
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "128": "kficon128.png",
        "64": "kficon64.png",
        "48": "kficon48.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "alarms"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "scenario.css"
            ],
            "js": [
                "clientload.js",
                "define.js",
                "startthunk.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        },
        {
            "matches": [
                "*:\/\/disqus.com\/embed*",
                "*:\/\/*.disqus.com\/embed*"
            ],
            "css": [
                "scenario.css"
            ],
            "js": [
                "clientload.js",
                "define.js",
                "startthunk.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "kficon19.png",
            "38": "kficon38.png",
            "48": "kficon48.png",
            "64": "kficon64.png",
            "128": "kficon128.png"
        },
        "default_title": "Killfile inactive"
    },
    "manifest_version": 2,
    "version": "0.2.11"
}