Switch environment

Switch from production to development environment, opening the same url into dev environment such as in localhost.

Switch environmentคืออะไร?

Switch environment เป็นส่วนขยายของ Chrome ที่พัฒนาโดย matiascarranza และคุณลักษณะหลักของมันคือ "Switch from production to development environment, opening the same url into dev environment such as in localhost."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Switch environment

ดาวน์โหลดไฟล์ส่วนขยาย Switch environment ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        It's a Developer extension. Clicking on Switch Env icon, will open the same URL but in the development environment that is configured. 
First, you have to configure in the option page the 'switch' for an specific URL and his development URL. For example: twitter.com to http://localhost:8080/some-path

So, when you're in http://twitter.com/matiascarranza, click on the icon and a new tab is opened with the url http://localhost:8080/some-path/matiascarranza.

Also, you can change the "localhost" to an especific URL or domain, such as 192.0.0.1 or dev.example.com

The port and path options are optional.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Switch environment Switch environment
ID mapjpddlaejfkdflanpgdpbemkemhkhn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/switch-environment/mapjpddlaejfkdflanpgdpbemkemhkhn
คำอธิบาย Switch from production to development environment, opening the same url into dev environment such as in localhost.
ขนาดไฟล์ 43 KB
จำนวนการติดตั้ง 99
เวอร์ชันปัจจุบัน 3.0.0
อัปเดตครั้งล่าสุด 2013-09-17
วันที่เผยแพร่ 2013-09-17
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา matiascarranza
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Switch environment",
    "description": "Switch from production to development environment, opening the same url into dev environment such as in localhost.",
    "version": "3.0.0",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "parseuri.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Switch!",
        "default_icon": "code_48x52.png"
    },
    "icons": {
        "48": "code_48x52.png",
        "128": "code_124x135.png"
    },
    "options_page": "options.html"
}