Trakt Spoiler Preventer
Trakt.tv but without the spoilers. Titles, screenshots and comments are all able to be obscured by this extension.
Trakt Spoiler Preventerคืออะไร?
Trakt Spoiler Preventer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jordan Bird และคุณลักษณะหลักของมันคือ "Trakt.tv but without the spoilers. Titles, screenshots and comments are all able to be obscured by this extension."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trakt Spoiler Preventer
ดาวน์โหลดไฟล์ส่วนขยาย Trakt Spoiler Preventer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension aims to prevent as many spoilers as possible on Trakt.tv with very customisable options. Key Features - Episode names can be obscured while preserving the show name, season and episode number. - Show, Season, Episode and Movie descriptions can be obscured. - Show, Season and Episode screenshots can be obscured. - Comments can be obscured. - Chrome Popup to make using Trakt.tv even easier! - Open a trakt page from IMDB. - Vast amount of options to personalise how your Trakt.tv is spoiler prevented. This is not an official application from Trakt.tv, as such all support requests, questions and feedback should be directed to me. Contact me: http://www.jordanbird.co.uk/contact/ -------------------------------------------------- Upcoming Changes - Hover over screenshots to reveal. - Improved search from popup. -------------------------------------------------- Recent Changes 1.1.1 - Fixed description spoiler prevention due to site markup change. 1.1 - Open Trakt page from IMDB. - Go to Calendar added to popup. - Go to Last Checked in Item added to popup. - Go to Next Episode of Last Checked in item added to popup. - Options added to customise popup. - Other user profiles are now spoiler prevented. 1.0.3 - Fixed a dashboard and profile page bug introduced by the previous update. 1.0.2 - Extension updated to support the new 'On Deck to Watch' Dashboard section. 1.0.1 - Fixed screenshots and check in box not being spoiler prevented due to a template change. 1.0 - Extension released.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | iopphobanmgainpbkfhegempeonoglpf |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/trakt-spoiler-preventer/iopphobanmgainpbkfhegempeonoglpf |
คำอธิบาย | Trakt.tv but without the spoilers. Titles, screenshots and comments are all able to be obscured by this extension. |
ขนาดไฟล์ | 290 KB |
จำนวนการติดตั้ง | 56 |
เวอร์ชันปัจจุบัน | 1.1.1 |
อัปเดตครั้งล่าสุด | 2015-09-04 |
วันที่เผยแพร่ | 2015-09-04 |
คะแนน | 5.00/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Jordan Bird |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | http://www.jordanbird.co.uk/contact/ |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trakt Spoiler Preventer", "short_name": "Trakt SP", "description": "Trakt.tv but without the spoilers. Titles, screenshots and comments are all able to be obscured by this extension.", "version": "1.1.1", "author": "Jordan Bird", "options_page": "options.html", "browser_action": { "default_popup": "popup.html", "default_title": "Trakt Spoiler Preventer" }, "icons": { "16": "icon16.png", "19": "icon19.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/trakt.tv\/*" ], "all_frames": true, "js": [ "jquery.min.js", "scanner.js" ], "css": [ "traktSpoilerPreventerOverride.css" ] }, { "matches": [ "*:\/\/www.imdb.com\/*" ], "all_frames": true, "js": [ "jquery.min.js", "imdb.js" ], "css": [ "imdbOverride.css" ] } ], "permissions": [ "storage", "activeTab", "tabs", "webNavigation" ], "web_accessible_resources": [ "icon32.png" ] } |