Attuno: Video Controller & YouTube Danmaku

Universal interface for enhancing the user experience of websites with videos and audios, such as YouTube, Odysee, Coursera, etc.

Attuno: Video Controller & YouTube Danmakuคืออะไร?

Attuno: Video Controller & YouTube Danmaku เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://attuno.com และคุณลักษณะหลักของมันคือ "Universal interface for enhancing the user experience of websites with videos and audios, such as YouTube, Odysee, Coursera, etc."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Attuno: Video Controller & YouTube Danmaku

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

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

                        👾 Features:
- Playback rate adjustment for videos and audios
- Volume adjustment for videos and audios
- Some built-in functions of videos and audios
- Danmaku service for YouTube

😁 More features coming soon!

‼️ IMPORTANT:
This project is to develop a universal playback interface in the form of a browser extension to control online video or audio playback for every website embedded with video elements, such as YouTube, Odysee, Coursera, etc.

Currently, each website provides its own control interface, and the functions provided are different, which will undoubtedly lead to deviations in the ease of use of the video control interface of each website, but they should actually share a large number of common characteristics, such as playback rate, play/pause, loop, etc. Specifically, this extension is supposed to specialize in aspects of playback speed controls.

Additionally, this project also attempts to provide danmaku services for video sites, currently including YouTube.                    

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

ชื่อ Attuno: Video Controller & YouTube Danmaku Attuno: Video Controller & YouTube Danmaku
ID nljojblagajpogakilpbmkkembnpcngj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/attuno-video-controller-y/nljojblagajpogakilpbmkkembnpcngj
คำอธิบาย Universal interface for enhancing the user experience of websites with videos and audios, such as YouTube, Odysee, Coursera, etc.
ขนาดไฟล์ 176 KB
จำนวนการติดตั้ง 28
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2021-07-01
วันที่เผยแพร่ 2021-06-23
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://attuno.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.attuno.com
URL หน้าช่วยเหลือ https://www.attuno.com/support
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.0.1",
    "description": "__MSG_extDescription__",
    "manifest_version": 3,
    "default_locale": "en",
    "author": "Aworei ",
    "homepage_url": "https:\/\/www.attuno.com",
    "icons": {
        "16": "assets\/logo.png",
        "32": "assets\/logo.png",
        "48": "assets\/logo.png",
        "128": "assets\/logo.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": "assets\/logo.png",
        "default_title": "Click to launch Attuno Gathering"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "assets\/options.html",
        "browser_style": true,
        "open_in_tab": true
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "notifications",
        "storage",
        "contextMenus",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}