Twitch - Remove Top Cheer
This extension removes the top cheer from the top of chat on twitch.tv
Twitch - Remove Top Cheerとは何ですか?
Twitch - Remove Top Cheerはjosh.m.correiaによって開発されたChromeの拡張機能で、その主な機能は「This extension removes the top cheer from the top of chat on twitch.tv」です。
拡張機能のスクリーンショット
Twitch - Remove Top Cheer拡張機能のCRXファイルをダウンロード
Twitch - Remove Top Cheer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is a very simple extension that has one function: to remove the top cheer from the top of chat on twitch.tv 拡張機能の基本情報
| 名前 | |
| ID | plhdimgjjobkjbdngkdfenkcdfipjhfc |
| 公式URL | https://chrome.google.com/webstore/detail/twitch-remove-top-cheer/plhdimgjjobkjbdngkdfenkcdfipjhfc |
| 説明 | This extension removes the top cheer from the top of chat on twitch.tv |
| ファイルサイズ | 39.8 KB |
| インストール数 | 88 |
| 現在のバージョン | 1.03 |
| 最終更新日 | 2019-02-17 |
| 公開日 | 2019-02-17 |
| 評価 | 4.00/5 合計 4 レビュー |
| 開発者 | josh.m.correia |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Twitch - Remove Top Cheer",
"description": "This extension removes the top cheer from the top of chat on twitch.tv",
"version": "1.03",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon.png"
},
"permissions": [
"activeTab",
"storage",
"tabs"
],
"background": {
"scripts": [
"jquery-3.2.1.min.js",
"background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https:\/\/www.twitch.tv\/*"
],
"js": [
"jquery-3.2.1.min.js",
"remove_top_cheer.js"
],
"run_at": "document_end"
}
]
} | |