HOTSLogs Extension
Small extension on www.hotslogs.com
ما هو HOTSLogs Extension؟
HOTSLogs Extension هو إضافة Chrome تم تطويرها بواسطة ahri، والميزة الرئيسية لها هي "Small extension on www.hotslogs.com".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة HOTSLogs Extension
قم بتنزيل ملفات الامتداد HOTSLogs Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
An extension of www.hotslogs.com Currently just adds wins/losses into "Games Played" cells, for convenience. Optionally colors hero rows in tables by hero subrole - if that setting is set into options.
معلومات أساسية عن التمديد
الاسم | HOTSLogs Extension |
ID | ncmfokmnclmedcfbbmaloocmncmopphf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/hotslogs-extension/ncmfokmnclmedcfbbmaloocmncmopphf |
الوصف | Small extension on www.hotslogs.com |
حجم الملف | 18.64 KB |
عدد التثبيتات | 169 |
النسخة الحالية | 0.3.11 |
آخر تحديث | 2017-04-09 |
تاريخ النشر | 2017-04-09 |
تقييم | 4.88/5 مجموع تقييمات 8 |
المطور | ahri |
نوع الدفع | free |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HOTSLogs Extension", "manifest_version": 2, "version": "0.3.11", "author": "ahri", "description": "Small extension on www.hotslogs.com", "browser_action": { "default_icon": "icon.png" }, "icons": { "128": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "permissions": [ "https:\/\/www.hotslogs.com\/Player\/Profile?PlayerID=*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.hotslogs.com\/Player\/Profile?PlayerID=*" ], "js": [ "common.js", "hero_roles.js", "contentscript.js", "favorite_heroes.js", "win_rate_stats.js" ] } ] } |