Domain Switcher
Easily switch domains between development, staging, production or other environments of projects.
ما هو Domain Switcher؟
Domain Switcher هو إضافة Chrome تم تطويرها بواسطة Alexander Pape، والميزة الرئيسية لها هي "Easily switch domains between development, staging, production or other environments of projects.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Domain Switcher
قم بتنزيل ملفات الامتداد Domain Switcher بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
As a developer, it can be a hassle to switch between various environments (e.g. dev, staging, prod). This extension is designed to allow the developer to quickly swap environments when they are on a page while keeping their path intact. This extension is open-source and hosted on GitHub. If you find an issue, help out by posting it there as an issue or submit a pull request. https://github.com/Macavity/domain-switcher-extension
معلومات أساسية عن التمديد
الاسم | Domain Switcher |
ID | bcgpoogiobjioebmbafkdaekndlknmdf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/domain-switcher/bcgpoogiobjioebmbafkdaekndlknmdf |
الوصف | Easily switch domains between development, staging, production or other environments of projects. |
حجم الملف | 446 KB |
عدد التثبيتات | 105 |
النسخة الحالية | 1.1.2 |
آخر تحديث | 2020-08-26 |
تاريخ النشر | 2020-07-21 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | Alexander Pape |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/Macavity/domain-switcher-extension |
عنوان صفحة المساعدة | https://github.com/Macavity/domain-switcher-extension/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Domain Switcher", "description": "Easily switch domains between development, staging, production or other environments of projects.", "version": "1.1.2", "manifest_version": 2, "icons": { "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "page_action": { "default_icon": { "16": "icons\/icon-16.png", "24": "icons\/icon-24.png", "32": "icons\/icon-32.png" }, "default_title": "Domain Switcher", "default_popup": "popup\/popup.html" }, "background": { "scripts": [ "background.js" ] }, "options_page": "options\/options.html", "permissions": [ "tabs", "downloads" ] } |