Blog Comment Killfile

Provides a killfile for certain blogs.

ما هو Blog Comment Killfile؟

Blog Comment Killfile هو إضافة Chrome تم تطويرها بواسطة fizbin، والميزة الرئيسية لها هي "Provides a killfile for certain blogs.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Blog Comment Killfile

قم بتنزيل ملفات الامتداد Blog Comment Killfile بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
}