Georanked
Geoguessr ranked extension to handle ranked games in Geoguessr
ما هو Georanked؟
Georanked هو إضافة Chrome تم تطويرها بواسطة jussetain، والميزة الرئيسية لها هي "Geoguessr ranked extension to handle ranked games in Geoguessr".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Georanked
قم بتنزيل ملفات الامتداد Georanked بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Georanked will let you play ranked games with geoguessr
معلومات أساسية عن التمديد
الاسم | Georanked |
ID | cjkbnjgngfcijeikaehopbhdiiaajdcb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/georanked/cjkbnjgngfcijeikaehopbhdiiaajdcb |
الوصف | Geoguessr ranked extension to handle ranked games in Geoguessr |
حجم الملف | 583 KB |
عدد التثبيتات | 86 |
النسخة الحالية | 0.1.1 |
آخر تحديث | 2020-11-23 |
تاريخ النشر | 2020-11-23 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | jussetain |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | http://georanked.com |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Georanked", "version": "0.1.1", "description": "Geoguessr ranked extension to handle ranked games in Geoguessr", "browser_action": { "default_popup": "index.html" }, "icons": { "16": "logo.png", "48": "logo.png", "128": "logo.png" }, "manifest_version": 2, "background": { "matches": [ "*" ], "scripts": [ "jquery.js", "script.js", "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "https:\/\/www.geoguessr.com\/*" ], "js": [ "jquery.js", "script.js" ], "run_at": "document_start" } ], "permissions": [ "webRequest", "https:\/\/www.geoguessr.com\/*", "storage", "tabs" ], "content_security_policy": "default-src 'none'; script-src 'self'; connect-src http:\/\/georanked.com:3690 https:\/\/www.geoguessr.com\/* http:\/\/www.geoguessr.com\/* http:\/\/localhost:3690; img-src http:\/\/georanked.com:3690\/* https:\/\/static-cdn.jtvnw.net\/* https:\/\/www.static-cdn.jtvnw.net\/* http:\/\/localhost:3690 data: https: http:; style-src 'self'" } |