Bleep It!

Removes offensive words from webpages and replaces them with symbols or random words.

Bleep It!คืออะไร?

Bleep It! เป็นส่วนขยายของ Chrome ที่พัฒนาโดย michaelasabo และคุณลักษณะหลักของมันคือ "Removes offensive words from webpages and replaces them with symbols or random words."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bleep It!

ดาวน์โหลดไฟล์ส่วนขยาย Bleep It! ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Bleep it will scan your webpage for offensive words and replace them with symbols, or random silly words which may make the page quite interesting.  I believe this would be a great utility for parents to have enabled while their children are browsing the internet.  Offensive words can appear on any webpage!

You can add custom words to your personal dictionary; this will enable the word you selected to be censored the next time the page loads.  These words will then be tied to your Google account and follow you no matter which computer you are on.  To do this, simply highlight the word with your mouse, right-click, and then choose Bleep Word!  If you go into the options of the plugin, you can change the program from displaying symbols to random "safe" words.  You can also view the words saved in your custom dictionary and make changes to them.  This helps if you've accidentally added a word.

Please feel free to leave me feedback.  This is my first Chrome Extension, so I'm sure you will have plenty of constructive criticism for me.  I am excited to hear what you have to say, and I hope you will enjoy using this plugin!

***If you have any issues with the extension, please fill out a bug report with as much detail as possible, and i'll take a look at it.***

Thank you!

Michael Sabo

If you wish to support this project financially, there is a donate button in the extension options.  Regardless, I hope you enjoy it and get some use out of it.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Bleep It! Bleep It!
ID nbipioihbcokkdgkllcgikoodgjdogpp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/bleep-it/nbipioihbcokkdgkllcgikoodgjdogpp
คำอธิบาย Removes offensive words from webpages and replaces them with symbols or random words.
ขนาดไฟล์ 45.5 KB
จำนวนการติดตั้ง 41
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2014-03-15
วันที่เผยแพร่ 2014-03-15
คะแนน 2.86/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา michaelasabo
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bleep It!",
    "description": "Removes offensive words from webpages and replaces them with symbols or random words.",
    "version": "1.3",
    "options_page": "options.html",
    "permissions": [
        "contextMenus",
        "tabs",
        "",
        "storage",
        "notifications"
    ],
    "browser_action": {
        "default_icon": "icon16.png"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.0.min.js",
                "replaceText.js",
                "removeSwears.js",
                "options.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "badwords.txt",
        "goodwords.txt"
    ],
    "manifest_version": 2
}