Nitter Redirect
Redirects Twitter requests to Nitter, the privacy friendly alternative.
Nitter Redirectとは何ですか?
Nitter RedirectはSimon Brazellによって開発されたChromeの拡張機能で、その主な機能は「Redirects Twitter requests to Nitter, the privacy friendly alternative.」です。
拡張機能のスクリーンショット
Nitter Redirect拡張機能のCRXファイルをダウンロード
Nitter Redirect拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
No unnecessary permissions required, only listens for and redirects requests made to `twitter.com`, `www.twitter.com`, `mobile.twitter.com`, `pbs.twimg.com` & `video.twimg.com`, nothing else.
Allows for setting custom instances and toggling redirects on/off.
★ Donate: 👨🏻💻
If you like this extension and are financially able please consider buying me a coffee to show your appreciation and support the continuation of the project.
☕️ https://www.buymeacoffee.com/SimonBrazell ☕️
★ What's New in This Version (v1.1.5): 🆕
• Now redirects Twitter URLs that include `/tweets` correctly. 拡張機能の基本情報
| 名前 | |
| ID | mohaicophfnifehkkkdbcejkflmgfkof |
| 公式URL | https://chromewebstore.google.com/detail/nitter-redirect/mohaicophfnifehkkkdbcejkflmgfkof |
| 説明 | Redirects Twitter requests to Nitter, the privacy friendly alternative. |
| ファイルサイズ | 17.25 KB |
| インストール数 | 10,342 |
| 現在のバージョン | 1.1.5 |
| 最終更新日 | 2020-07-27 |
| 公開日 | 2020-03-28 |
| 評価 | 4.41/5 合計 22 レビュー |
| 開発者 | Simon Brazell |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/SimonBrazell/nitter-redirect |
| ヘルプページのURL | https://github.com/SimonBrazell/nitter-redirect/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Nitter Redirect",
"description": "Redirects Twitter requests to Nitter, the privacy friendly alternative.",
"version": "1.1.5",
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"icons": {
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/twitter.com\/*",
"*:\/\/www.twitter.com\/*",
"*:\/\/mobile.twitter.com\/*",
"*:\/\/pbs.twimg.com\/*",
"*:\/\/video.twimg.com\/*"
],
"js": [
"content-script.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"*:\/\/twitter.com\/*",
"*:\/\/www.twitter.com\/*",
"*:\/\/mobile.twitter.com\/*",
"*:\/\/pbs.twimg.com\/*",
"*:\/\/video.twimg.com\/*"
],
"browser_action": {
"default_popup": "pages\/popup\/popup.html",
"default_icon": {
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
},
"browser_specific_settings": {
"gecko": {
"id": "{513646f8-fb87-4135-a41e-4cf1d1ccccf2}"
}
}
} | |