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 |
| 电子邮箱 | [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}"
}
}
} | |