Localhost Automate

Converts file URLs to http://localhost for developer testing purposes

Localhost Automate란 무엇입니까?

Localhost Automate은(는) Tal Koren에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Converts file URLs to http://localhost for developer testing purposes"입니다.

확장 프로그램 스크린샷

screenshot

Localhost Automate 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        As a developer working under his Localhost server before uploading a project to the WWW, I've encountered one issue that always wastes 3-4 seconds of my workflow.

After opening a web document, whether if its an html file, php file or anything else, Google Chrome opens it under file:// protocol instead of http://, resulting in developers clicking on the address bar just to switch to http://localhost.

Localhost Automate is what solves it.

Localhost Automate provides an easier, more comfortable way to tell the browser to get the http://localhost up there instead of file://, as long as the web document is in the preconfigured folder.

Localhost Automate requires a valid path to your localhost folder (ie. d:\wwwroot), so afterwards, if you're opening a file under 'd:\wwwroot\Some_Project', the extension would redirect it to 'http://localhost/Some_Project'.

Comments, bugs and suggestions are welcome. 

Enjoy :)                    

확장 프로그램 기본 정보

이름 Localhost Automate Localhost Automate
ID pplnfonehjimoddpmnhldhkgojhkjcfh
공식 URL https://chromewebstore.google.com/detail/localhost-automate/pplnfonehjimoddpmnhldhkgojhkjcfh
설명 Converts file URLs to http://localhost for developer testing purposes
파일 크기 85.98 KB
설치 횟수 1,347
현재 버전 1.1
최근 업데이트 2018-04-28
출시 날짜 2018-04-27
평점 4.17/5 총 12 개의 평점
개발자 Tal Koren
결제 유형 free
지원되는 언어 en
manifest.json
{
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Converts file URLs to http:\/\/localhost for developer testing purposes",
    "icons": {
        "128": "icon.png",
        "16": "icon.png",
        "48": "icon.png"
    },
    "manifest_version": 2,
    "name": "Localhost Automate",
    "permissions": [
        "storage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.1"
}