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."입니다.

확장 프로그램 스크린샷

screenshot

Nitter Redirect 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Nitter Redirect Nitter Redirect
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}"
        }
    }
}