Ryan's Spoiler Blocker
Choose keywords to block from your web browser, along with text surrounding them.
Ryan's Spoiler Blockerคืออะไร?
Ryan's Spoiler Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ryanholland1987 และคุณลักษณะหลักของมันคือ "Choose keywords to block from your web browser, along with text surrounding them."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ryan's Spoiler Blocker
ดาวน์โหลดไฟล์ส่วนขยาย Ryan's Spoiler Blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Unlike similar extensions, it works on Facebook, Youtube, Reddit, and Twitter feeds, along with message boards, comment sections, etc! Keeps spoilers from touching your eyeballs... ...At least, a lot of the time. There are some things it can't detect. It's an imperfect solution to a difficult problem, but I hope it helps. It can be used for TV shows, movies, sports teams, politicians, celebrities, curse words, or your ex's name. It replaces them with "[TEXT BLOCKED]". It does not collect any data on you or your browsing habits. It should not slow down your browser; if it does, try using fewer keywords. Press the star button in the top right of the browser to change the keywords or turn it on and off. You might want to turn it off if doing something important, like banking. I'd be glad to hear if you liked it, or if you have suggestions for changes. I intend to update it with more features.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Ryan's Spoiler Blocker |
ID | imgkcgoajllcokmmiegppbenjnjggdbd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ryans-spoiler-blocker/imgkcgoajllcokmmiegppbenjnjggdbd |
คำอธิบาย | Choose keywords to block from your web browser, along with text surrounding them. |
ขนาดไฟล์ | 119 KB |
จำนวนการติดตั้ง | 42 |
เวอร์ชันปัจจุบัน | 1.3 |
อัปเดตครั้งล่าสุด | 2016-01-25 |
วันที่เผยแพร่ | 2016-01-25 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | ryanholland1987 |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Ryan's Spoiler Blocker", "description": "Choose keywords to block from your web browser, along with text surrounding them.", "version": "1.3", "manifest_version": 2, "browser_action": { "default_title": "Ryan's Spoiler Blocker", "default_icon": "icon128x128.png", "default_popup": "options.html" }, "icons": { "48": "icon48x48.png", "128": "icon128x128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "activeTab", "storage" ], "background": { "scripts": [ "background.js" ] } } |