Host name rewriter
Rewrite URLs for using a different host when accessing a web page.
Host name rewriterとは何ですか?
Host name rewriterはMattias Lundbergによって開発されたChromeの拡張機能で、その主な機能は「Rewrite URLs for using a different host when accessing a web page.」です。
拡張機能のスクリーンショット
Host name rewriter拡張機能のCRXファイルをダウンロード
Host name rewriter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Extension for rewriting of host names when accessing a webpage. Will rewrite the host name regardless of method of access, both clicking a link and writing URL will work. Usage example: Attempts to reach 'example.com/something' will be redirected to 'mydomain.com/something'. A sub domain, 'sub.example.com', will not be rewritten if a rule for 'example.com' is present. A specific rule for 'sub.example.com' needs to be added. The extension needs to be configured from the extension button or options page before starting to work. Version History * 1.3.0 - Fix rewrite after redirect * 1.2.1 - Sync changes between options and action. * 1.2.0 - Improvements of interface and usability * 1.1.0 - Improve performance and interface * 1.0.1 - Fix installation * 1.0.0 - Initial release
拡張機能の基本情報
名前 | Host name rewriter |
ID | kgkjmljnaneinhnbbdhigejjffonhffb |
公式URL | https://chromewebstore.google.com/detail/host-name-rewriter/kgkjmljnaneinhnbbdhigejjffonhffb |
説明 | Rewrite URLs for using a different host when accessing a web page. |
ファイルサイズ | 28.02 KB |
インストール数 | 1,358 |
現在のバージョン | 1.3.0 |
最終更新日 | 2017-10-14 |
公開日 | 2017-10-14 |
評価 | 3.21/5 合計 14 レビュー |
開発者 | Mattias Lundberg |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/mattiaslundberg/HostNameRewriter |
ヘルプページのURL | https://github.com/mattiaslundberg/HostNameRewriter |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Host name rewriter", "manifest_version": 2, "version": "1.3.0", "description": "Rewrite URLs for using a different host when accessing a web page.", "options_page": "options.html", "permissions": [ "storage", "webNavigation", "tabs" ], "icons": { "16": "images\/icon16.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "event.js" ], "persistent": true }, "browser_action": { "default_icon": { "19": "images\/icon19.png" }, "default_title": "Host name rewriter" } } |