Localhost Automate

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

Localhost Automateคืออะไร?

Localhost Automate เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tal Koren และคุณลักษณะหลักของมันคือ "Converts file URLs to http://localhost for developer testing purposes"

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

screenshot

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

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

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

                        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"
}