Shut Up Everybody

Remove stupid opinions from the internet.

Shut Up Everybodyคืออะไร?

Shut Up Everybody เป็นส่วนขยายของ Chrome ที่พัฒนาโดย YAYitsAndrew และคุณลักษณะหลักของมันคือ "Remove stupid opinions from the internet."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Shut Up Everybody

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

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

                        Automatically blacks out text on webpages that contain I or my.  Stupid idiot opinions disappear.  It's amazingly effective.  Here's some examples of stuff that gets blocked.

"Using big words to cover up the fact that you didn't read the article I see. Why don't you actually point out WHY it is bullshit?"
SHUT UP, THIS PLUGIN BLOCKS YOU

"I have zero desire to ever use anything Microsoft designs anymore."
NOBODY CARES, SHUT UP

"I've assumed the government's been listening to me since all that Patriot Act stuff, or that they at least have the ability to."
WELL NOW NO ONE IS LISTENING, BECAUSE THEY ALL INSTALLED THIS PLUGIN. SHUT UP

It's disabled on Facebook because otherwise the entire site would be a sad party of infinite black lines.  You can toggle the plugin on and off at any time by clicking the icon in the address bar.  You can also see what's under the black-outs by hovering over them.

==Release Notes==

v 1.3:
- The blocker will now block opinions using unicode apostrophes such as in I'd or I'll.
- Headings will no longer be blocked, regardless of their content
- Disabled the plugin for any google urls (mail, searches, etc)

v 1.2:
- Lessened the severity of the blackouts
- 'me' is no longer in the block list, this may change in a future release
- form elements and links won't be blacked out
- the I matcher is less greedy, now things like roman numeral I., i.imgur links, and abbreviations like i.e. will be ignored.                    

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

ชื่อ Shut Up Everybody Shut Up Everybody
ID fblbhjoaifndkejdmllpimdpgmhddheg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/shut-up-everybody/fblbhjoaifndkejdmllpimdpgmhddheg
คำอธิบาย Remove stupid opinions from the internet.
ขนาดไฟล์ 49.75 KB
จำนวนการติดตั้ง 25
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2013-06-19
วันที่เผยแพร่ 2013-06-19
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา YAYitsAndrew
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Shut Up Everybody",
    "description": "Remove stupid opinions from the internet.",
    "version": "1.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "page_action": {
        "default_icon": "icon_blocked.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.google.com\/*"
            ],
            "css": [
                "shutup.css"
            ],
            "js": [
                "jquery-2.0.0.min.js",
                "shutup.js"
            ],
            "all_frames": true
        }
    ]
}