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 هو إضافة Chrome تم تطويرها بواسطة josh.m.correia، والميزة الرئيسية لها هي "This extension removes the top cheer from the top of chat on twitch.tv".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Twitch - Remove Top Cheer
قم بتنزيل ملفات الامتداد Twitch - Remove Top Cheer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } ] } |