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 :)
拡張機能の基本情報
名前 | 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" } |