Unchain Twitter

Make it so people can't effectively block you on twitter

Co to jest Unchain Twitter?

Unchain Twitter to rozszerzenie Chrome opracowane przez Unchained Birdy, a jego główną funkcją jest „Make it so people can't effectively block you on twitter”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Unchain Twitter

Pobierz pliki rozszerzeń Unchain Twitter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension gives you an ability to see all public tweets on twitter.

You will never see "You're blocked" again.

Unchain your twitter for the best experience.                    

Podstawowe informacje o rozszerzeniu

Nazwa Unchain Twitter Unchain Twitter
ID hmoojlpmmpfcpehheagnhdjkoidfegjn
Oficjalny URL https://chromewebstore.google.com/detail/unchain-twitter/hmoojlpmmpfcpehheagnhdjkoidfegjn
Opis Make it so people can't effectively block you on twitter
Rozmiar pliku 313 KB
Liczba instalacji 39
Aktualna Wersja 0.0.1.5
Ostatnia Aktualizacja 2023-05-01
Data Publikacji 2023-03-21
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper Unchained Birdy
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.buymeacoffee.com/unchainedbirdy
Adres URL Strony Pomocy https://twitter.com/unchainedBirdy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unchain Twitter",
    "version": "0.0.1.5",
    "manifest_version": 3,
    "background": {
        "service_worker": "extension_core\/background.js"
    },
    "host_permissions": [
        "https:\/\/nitter.cz\/*"
    ],
    "permissions": [
        "storage",
        "cookies"
    ],
    "options_ui": {
        "page": "extension_core\/options\/options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "content_script\/css\/styles.css",
                "content_script\/dist\/main.css",
                "extension_core\/extra\/css\/styles.css"
            ],
            "js": [
                "extension_core\/extra\/js\/video.min.js",
                "extension_core\/extra\/js\/html2canvas.min.js",
                "content_script\/dist\/main.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "128": "extension_core\/icons\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "extension_core\/images\/logo.png"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ]
        }
    ],
    "description": "Make it so people can't effectively block you on twitter"
}