Spoiled
Blocks spoiler content using any provided keywords. Stop spoilers, sports, or celebrity click-bait from ruining your interwebs.
Spoiledคืออะไร?
Spoiled เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Lucas Rowe และคุณลักษณะหลักของมันคือ "Blocks spoiler content using any provided keywords. Stop spoilers, sports, or celebrity click-bait from ruining your interwebs."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spoiled
ดาวน์โหลดไฟล์ส่วนขยาย Spoiled ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
With this unobtrusive and lightweight spoiler blocker users enter custom phrases to block anything from TV spoilers to celebrity click-bait. Spoiled will scan pages for entered phrases and hide any content using those phrases, including nearby images. Features * Block any phrase * Block images nearby detected phrases * Works on any website, including Facebook, Twitter, and other social networks * No registration or social network logins required * No user data collection of any kind * Allows regular expressions * Snooze to temporarily allow spoilers * Open source Limitations This is still in development and is done as a side project. It is meant to be lightweight so coverage is likely less than some proprietary plugins. The goal is that it will run better and provide more control than the heavyweight plugins. Also note that this cannot protect you from mobile spoilers so keep your guard up. This is an open source extension created by a passionate spoiler hater. If you'd like to contribute or roll your own, please feel free to fork me on Github: https://github.com/lucasrowe/spoiled
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ofgoaiodajmkpocgdkjlokhhbpeodnci |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/spoiled/ofgoaiodajmkpocgdkjlokhhbpeodnci |
คำอธิบาย | Blocks spoiler content using any provided keywords. Stop spoilers, sports, or celebrity click-bait from ruining your interwebs. |
ขนาดไฟล์ | 34.13 KB |
จำนวนการติดตั้ง | 315 |
เวอร์ชันปัจจุบัน | 1.1.2 |
อัปเดตครั้งล่าสุด | 2020-07-16 |
วันที่เผยแพร่ | 2016-08-18 |
คะแนน | 4.60/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | Lucas Rowe |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://lucasrowe.github.io/spoiled |
URL หน้าช่วยเหลือ | https://github.com/lucasrowe/spoiled/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spoiled", "description": "Blocks spoiler content using any provided keywords. Stop spoilers, sports, or celebrity click-bait from ruining your interwebs.", "version": "1.1.2", "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "spoiler_style.css" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "48": "icon.png", "128": "icon.png" }, "permissions": [ "declarativeContent", "activeTab", "storage", "https:\/\/ajax.googleapis.com\/" ] } |