No Redirect
No Redirect
No Redirectとは何ですか?
No Redirectは王成によって開発されたChromeの拡張機能で、その主な機能は「No Redirect」です。
拡張機能のスクリーンショット
No Redirect拡張機能のCRXファイルをダウンロード
No Redirect拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Some websites change the links on their pages to "redirect url". This sucks. For example: a link to www.google.com in Slack is like "https://slack-redir.net/link?url=https://www.google.com". This means when you click on these links, instead of going to the target location, you are actrually visiting "slack-redir.net" server (which is controlled by Slack obviously) and the server will then "redirect" you to the real location.This means if slack server is slow or down, you can't go to the location. This extension uses Chrome API to intercept the link before the navigation. It will extrack the real url from the "redirect" url and navigate you to the real url directly.
拡張機能の基本情報
名前 | No Redirect |
ID | bgflddecjcadaapedngfifbkhghnpmep |
公式URL | https://chromewebstore.google.com/detail/no-redirect/bgflddecjcadaapedngfifbkhghnpmep |
説明 | No Redirect |
ファイルサイズ | 184 KB |
インストール数 | 3,076 |
現在のバージョン | 1.2.0 |
最終更新日 | 2020-03-04 |
公開日 | 2020-03-04 |
評価 | 3.13/5 合計 8 レビュー |
開発者 | 王成 |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/wangcheng678/no-redir-browser-extension |
ヘルプページのURL | https://github.com/wangcheng678/no-redir-browser-extension/issues |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "No Redirect", "version": "1.2.0", "description": "No Redirect", "background": { "persistent": true, "scripts": [ "js\/background.js" ] }, "icons": { "16": "img\/icon_awesome_face_16.png", "32": "img\/icon_awesome_face_32.png", "48": "img\/icon_awesome_face_48.png", "128": "img\/icon_awesome_face_128.png" }, "options_page": "options.html", "permissions": [ "webNavigation", "storage", "notifications" ], "manifest_version": 2 } |