Gobstones Night Mode
Modo nocturno para Gobstones, el IDE web para aprender a programar.
ما هو Gobstones Night Mode؟
Gobstones Night Mode هو إضافة Chrome تم تطويرها بواسطة Amuro، والميزة الرئيسية لها هي "Modo nocturno para Gobstones, el IDE web para aprender a programar.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Gobstones Night Mode
قم بتنزيل ملفات الامتداد Gobstones Night Mode بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Gobstones Night Mode is a Chrome extension that changes the colors and background on the web IDE for the Gobstones programming language (you can learn more about it here: https://github.com/gobstones). معلومات أساسية عن التمديد
| الاسم | |
| ID | eddfllfofdmdhafjdocfkpcknflfgfbm |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/gobstones-night-mode/eddfllfofdmdhafjdocfkpcknflfgfbm |
| الوصف | Modo nocturno para Gobstones, el IDE web para aprender a programar. |
| حجم الملف | 316 KB |
| عدد التثبيتات | 24 |
| النسخة الحالية | 1.1 |
| آخر تحديث | 2019-04-30 |
| تاريخ النشر | 2019-04-30 |
| تقييم | 5.00/5 مجموع تقييمات 1 |
| المطور | Amuro |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://github.com/amuroBosetti/GobstonesNightMode |
| اللغات المدعومة | es |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Gobstones Night Mode",
"version": "1.1",
"description": "Modo nocturno para Gobstones, el IDE web para aprender a programar.",
"permissions": [
"tabs",
"https:\/\/gobstones.github.io\/*",
"storage"
],
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https:\/\/gobstones.github.io\/*"
],
"js": [
"js\/content.js"
],
"css": [
"css\/content.css"
]
}
],
"page_action": {
"default_popup": "popup.html",
"default_icon": "images\/icon.png"
},
"icons": {
"256": "images\/icon.png"
},
"manifest_version": 2
} | |