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”。
擴展截圖
下載Localhost Automate擴展crx文件
下載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 :) 擴展基本資訊
| 名稱 | |
| ID | pplnfonehjimoddpmnhldhkgojhkjcfh |
| 官方網址 | 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"
} | |