Twitter UV

Browser Extension which enhances Twitter with Urbit Visor integration.

Twitter UVคืออะไร?

Twitter UV เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dcSpark และคุณลักษณะหลักของมันคือ "Browser Extension which enhances Twitter with Urbit Visor integration."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter UV

ดาวน์โหลดไฟล์ส่วนขยาย Twitter UV ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitter UV Twitter UV
ID dfidmeghmgfhhflhfopoeinniomenjlf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitter-uv/dfidmeghmgfhhflhfopoeinniomenjlf
คำอธิบาย Browser Extension which enhances Twitter with Urbit Visor integration.
ขนาดไฟล์ 253 KB
จำนวนการติดตั้ง 59
เวอร์ชันปัจจุบัน 0.2.2
อัปเดตครั้งล่าสุด 2022-04-21
วันที่เผยแพร่ 2022-01-28
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา dcSpark
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dcSpark/twitter-uv
URL หน้านโยบายความเป็นส่วนตัว https://dcspark.io/legal/privacy
ภาษาที่รองรับ 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\/*"
    ]
}