Ogame Fleet Counter
No more asking your friends to spy and tell you your fleet points!
ما هو Ogame Fleet Counter؟
Ogame Fleet Counter هو إضافة Chrome تم تطويرها بواسطة joshepMad، والميزة الرئيسية لها هي "No more asking your friends to spy and tell you your fleet points!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Ogame Fleet Counter
قم بتنزيل ملفات الامتداد Ogame Fleet Counter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension let's you see your fleet points on each planet or moon in Ogame.
معلومات أساسية عن التمديد
الاسم | Ogame Fleet Counter |
ID | dfkfmopjlbomagboeikibfocijcflbei |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/ogame-fleet-counter/dfkfmopjlbomagboeikibfocijcflbei |
الوصف | No more asking your friends to spy and tell you your fleet points! |
حجم الملف | 36.27 KB |
عدد التثبيتات | 1,315 |
النسخة الحالية | 4.6 |
آخر تحديث | 2022-12-11 |
تاريخ النشر | 2020-04-28 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | joshepMad |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://www.privacypolicies.com/live/a133a0e4-40f6-432a-b246-4ba64a8b5303 |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Ogame Fleet Counter", "short_name": "OFC", "description": "No more asking your friends to spy and tell you your fleet points!", "version": "4.6", "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/index.php?page=ingame&component=shipyard*" ], "js": [ "js\/jquery.js", "js\/content.js" ], "run_at": "document_end" }, { "css": [ "skin\/style.css" ], "js": [ "js\/fleet.js" ], "matches": [ "https:\/\/*.ogame.gameforge.com\/game\/index.php?page=highscore*" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "js\/toInject.js" ], "matches": [ "https:\/\/*\/*" ] } ] } |