Spoiler Specs
Removes spoilery thumbnails and descriptions on streaming sites
什麼是Spoiler Specs?
Spoiler Specs是由tomlumperson開發的Chrome擴展程式,該擴展的主要功能是“Removes spoilery thumbnails and descriptions on streaming sites”。
擴展截圖
下載Spoiler Specs擴展crx文件
下載Spoiler Specs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Removes spoilery thumbnails and descriptions on HBO, Netflix, Hulu, Crunchyroll, and Amazon. 擴展基本資訊
| 名稱 | |
| ID | ooegdkkipjbdfhdkamblcfljmolhakbo |
| 官方網址 | https://chromewebstore.google.com/detail/spoiler-specs/ooegdkkipjbdfhdkamblcfljmolhakbo |
| 簡介 | Removes spoilery thumbnails and descriptions on streaming sites |
| 檔案大小 | 28.69 KB |
| 安裝次數 | 117 |
| 目前版本 | 1.1.3 |
| 更新時間 | 2021-05-28 |
| 上架時間 | 2019-10-18 |
| 評分 | 5.00/5 共 2 次評分 |
| 開發者 | tomlumperson |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://www.tomlum.com/spoilerspecs |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Spoiler Specs",
"short_name": "Spoiler Specs",
"version": "1.1.3",
"manifest_version": 2,
"description": "Removes spoilery thumbnails and descriptions on streaming sites",
"homepage_url": "http:\/\/www.TomLum.com\/spoilerspecs",
"icons": {
"128": "icons\/icon128on.png"
},
"default_locale": "en",
"browser_action": {
"default_icon": "icons\/icon128on.png",
"default_title": "Spoiler Specs",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"*:\/\/*.hulu.com\/*"
],
"js": [
"src\/inject\/hulu.js"
]
},
{
"run_at": "document_end",
"matches": [
"*:\/\/*.amazon.com\/*"
],
"js": [
"src\/inject\/amazon.js"
]
},
{
"run_at": "document_end",
"matches": [
"*:\/\/*.hbogo.com\/*"
],
"js": [
"src\/inject\/hbogo.js"
]
},
{
"run_at": "document_end",
"matches": [
"*:\/\/*.hbomax.com\/*"
],
"js": [
"src\/inject\/hbomax.js"
]
},
{
"run_at": "document_end",
"matches": [
"*:\/\/*.hbonow.com\/*"
],
"js": [
"src\/inject\/hbogo.js"
]
},
{
"run_at": "document_end",
"matches": [
"*:\/\/*.netflix.com\/*"
],
"js": [
"src\/inject\/netflix.js"
]
},
{
"run_at": "document_end",
"matches": [
"*:\/\/*.crunchyroll.com\/*"
],
"js": [
"src\/inject\/crunchyroll.js"
]
}
]
} | |