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 |
| 官方網址 | 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 |
| 電子郵箱 | [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}"
}
}
} | |