Hide The Scores! (in NBA League Pass)
Hide all scores in the NBA League Pass game page.
ما هو Hide The Scores! (in NBA League Pass)؟
Hide The Scores! (in NBA League Pass) هو إضافة Chrome تم تطويرها بواسطة jorge.silva.jetter، والميزة الرئيسية لها هي "Hide all scores in the NBA League Pass game page.".
تحميل ملف CRX للإضافة Hide The Scores! (in NBA League Pass)
قم بتنزيل ملفات الامتداد Hide The Scores! (in NBA League Pass) بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Hide all scores in the NBA League Pass game page. It's really annoying watching a game on NBA League Pass and seeing the score at the same time! Specially when the feed is behind and YOU NOW KNOW WHAT GOING TO HAPPEN! Fix all that by just hiding all the scores! This extension only adds one line of CSS to add the scores, so it won't make your pages load any slower or run any code at all.
معلومات أساسية عن التمديد
الاسم | |
ID | adabhlmohojcielbiknhlcmapbidbnkp |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/hide-the-scores-in-nba-le/adabhlmohojcielbiknhlcmapbidbnkp |
الوصف | Hide all scores in the NBA League Pass game page. |
حجم الملف | 5.47 KB |
عدد التثبيتات | 61 |
النسخة الحالية | 0.0.1 |
آخر تحديث | 2017-01-21 |
تاريخ النشر | 2017-01-21 |
المطور | jorge.silva.jetter |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide The Scores! (in NBA League Pass)", "description": "Hide all scores in the NBA League Pass game page.", "manifest_version": 2, "version": "0.0.1", "icons": { "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.nba.com\/*" ], "css": [ "main.css" ], "js": [ "main.js" ] } ], "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "http:\/\/www.nba.com\/*" ] } |