Localhost Automate

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

Localhost Automate क्या है?

Localhost Automate Tal Koren द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Converts file URLs to http://localhost for developer testing purposes"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Localhost Automate एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}