Word Cop

Word Cop censors profanity and inappropriate words on the Internet.

ما هو Word Cop؟

Word Cop هو إضافة Chrome تم تطويرها بواسطة Siraaj Fadoo & Ryan Miles، والميزة الرئيسية لها هي "Word Cop censors profanity and inappropriate words on the Internet.".

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

screenshot

تحميل ملف CRX للإضافة Word Cop

قم بتنزيل ملفات الامتداد Word Cop بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Word Cop is a Google Chrome Extension that censors profanity and inappropriate words on the Internet.                    

معلومات أساسية عن التمديد

الاسم Word Cop Word Cop
ID akmnnpnmghbahiimcfkpmccpifiiacoh
عنوان URL الرسمي https://chrome.google.com/webstore/detail/word-cop/akmnnpnmghbahiimcfkpmccpifiiacoh
الوصف Word Cop censors profanity and inappropriate words on the Internet.
حجم الملف 21.62 KB
عدد التثبيتات 37
النسخة الحالية 1.21
آخر تحديث 2016-02-01
تاريخ النشر 2016-02-01
تقييم 3.67/5 مجموع تقييمات 3
المطور Siraaj Fadoo & Ryan Miles
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Word Cop",
    "short_name": "Word Cop",
    "description": "Word Cop censors profanity and inappropriate words on the Internet.",
    "version": "1.21",
    "offline_enabled": true,
    "permissions": [
        "tabs",
        "",
        "storage",
        "browsingData"
    ],
    "icons": {
        "64": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "functions.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "words.json"
    ]
}