Spoiler Blocker
Blocks spoilers on your Facebook and Twitter feed.
Spoiler Blockerคืออะไร?
Spoiler Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย spoiler.blocker.dev และคุณลักษณะหลักของมันคือ "Blocks spoilers on your Facebook and Twitter feed."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Spoiler Blocker
ดาวน์โหลดไฟล์ส่วนขยาย Spoiler Blocker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Say goodbye to spoilers ruining your favourite TV show or movie. The Spoiler Blocker extension hides posts containing keywords for shows you're watching. Block 'em all * Define lists of keywords, and posts containing any of these keywords will be hidden * Choose whether you want to overlay posts with a white panel or remove them completely * Deactivate lists if already you've finished watching the latest episode Share with others * Visit http://spoilerblocker.herokuapp.com/ to share lists with others * Use download IDs from the website to efficiently get lists into your extension
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ehjbmpkpiidfmlcaialacajddfkpepdo |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/spoiler-blocker/ehjbmpkpiidfmlcaialacajddfkpepdo |
คำอธิบาย | Blocks spoilers on your Facebook and Twitter feed. |
ขนาดไฟล์ | 804 KB |
จำนวนการติดตั้ง | 33 |
เวอร์ชันปัจจุบัน | 0.2.3 |
อัปเดตครั้งล่าสุด | 2017-01-17 |
วันที่เผยแพร่ | 2017-01-17 |
คะแนน | 1.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | spoiler.blocker.dev |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | http://spoilerblocker.herokuapp.com/ |
URL หน้าช่วยเหลือ | https://github.com/kabir-plod/spoiler-blocker |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spoiler Blocker", "description": "Blocks spoilers on your Facebook and Twitter feed.", "version": "0.2.3", "browser_action": { "default_title": "Spoiler Blocker", "default_icon": { "16": "img\/icon16.png", "32": "img\/icon32.png" }, "default_popup": "panel.html" }, "options_ui": { "page": "options.html" }, "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "64": "img\/icon64.png", "128": "img\/icon128.png" }, "permissions": [ "activeTab", "storage", "https:\/\/spoilerblocker.herokuapp.com\/downloadList\/*" ], "background": { "page": "bg.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.facebook.com\/*", "*:\/\/facebook.com\/*" ], "js": [ "fb.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/*.twitter.com\/*", "*:\/\/twitter.com\/*" ], "js": [ "tw.js" ], "run_at": "document_start" } ] } |