Switch environment
Switch from production to development environment, opening the same url into dev environment such as in localhost.
Switch environment란 무엇입니까?
Switch environment은(는) matiascarranza에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Switch from production to development environment, opening the same url into dev environment such as in localhost."입니다.
확장 프로그램 스크린샷
Switch environment 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } |