Twitter UV

Browser Extension which enhances Twitter with Urbit Visor integration.

Co je Twitter UV?

Twitter UV je rozšíření Chrome vyvinuté dcSpark, a jeho hlavní funkcí je „Browser Extension which enhances Twitter with Urbit Visor integration.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Twitter UV

Stáhněte si soubory rozšíření Twitter UV ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Twitter UV is a web extension which bridges Twitter and Urbit. It allows users to easily share tweets and unroll whole threads at the click of a button directly onto their ships for sharing with others or archival purposes.                    

Základní Informace o Rozšíření

Název Twitter UV Twitter UV
ID dfidmeghmgfhhflhfopoeinniomenjlf
Oficiální URL https://chromewebstore.google.com/detail/twitter-uv/dfidmeghmgfhhflhfopoeinniomenjlf
Popis Browser Extension which enhances Twitter with Urbit Visor integration.
Velikost souboru 253 KB
Počet instalací 59
Aktuální Verze 0.2.2
Poslední Aktualizace 2022-04-21
Datum Vydání 2022-01-28
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář dcSpark
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/dcSpark/twitter-uv
URL Stránky Zásad Ochrany Soukromí https://dcspark.io/legal/privacy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter UV",
    "version": "0.2.2",
    "description": "Browser Extension which enhances Twitter with Urbit Visor integration.",
    "manifest_version": 3,
    "icons": {
        "16": ".\/public\/images\/icon16.png",
        "48": ".\/public\/images\/icon48.png",
        "128": ".\/public\/images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.twitter.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "dev.js"
            ],
            "css": [
                "dev.css"
            ]
        }
    ],
    "action": {
        "default_icons": {
            "16": ".\/public\/images\/icon16.png",
            "48": ".\/public\/images\/icon48.png",
            "128": ".\/public\/images\/icon128.png"
        },
        "default_popup": ".\/popup.html",
        "default_title": "Twitter UV"
    },
    "permissions": [],
    "host_permissions": [
        "*:\/\/www.twitter.com\/*",
        "*:\/\/twitter.com\/*",
        "*:\/\/mobile.twitter.com\/*"
    ]
}