Enhancer for Nebula

Enhancer for Nebula. Adds some quality of life features to the nebula player.

Enhancer for Nebulaคืออะไร?

Enhancer for Nebula เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://web.piber.at และคุณลักษณะหลักของมันคือ "Enhancer for Nebula. Adds some quality of life features to the nebula player."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Enhancer for Nebula

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

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

                        Heavily inspired by Enhancer for YouTube™.

This extension aspires to bring some useful features to the Nebula site.


**Features**
Page:
- Queue: Add videos to watch queue
- Share: Queue is shareable -- Bookmark and Share your list!
- YouTube Link: This extension can try to find the corresponding YouTube video (enable in settings)
- Watch on Nebula: On any YouTube video page tries to find the corresponding Nebula video (enable in settings) -- Optionally automatically open it in a new tab
- Hide creators: Enables you to hide videos by certain creators
- Hide watched videos: Hides videos that Nebula says you've watched
- RSS: Add feed button to creator page via external tool (enable in settings)
- Style visited links to mark visited videos
Player:
- Quick dial to set speed: New button in player to increase/decrease speed by scrolling
- Scroll over player to set volume (enable in settings)
- Toggle time display between current/remaining time
- Autoplay: Start videos automatically
- Keyboard shortcuts: Shortcuts in video player
- Execute custom JavaScript code on the web page
- Customize buttons in player

If you have any suggestions, please open a new issue.

Full information and changes: https://github.com/cpiber/NebulaEnhance#readme                    

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

ชื่อ Enhancer for Nebula Enhancer for Nebula
ID niaholaehmipmbpoagjmdlocnhakeonl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/enhancer-for-nebula/niaholaehmipmbpoagjmdlocnhakeonl
คำอธิบาย Enhancer for Nebula. Adds some quality of life features to the nebula player.
ขนาดไฟล์ 246 KB
จำนวนการติดตั้ง 724
เวอร์ชันปัจจุบัน 1.4.0
อัปเดตครั้งล่าสุด 2024-03-01
วันที่เผยแพร่ 2021-02-12
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://web.piber.at
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/cpiber/NebulaEnhance#readme
URL หน้าช่วยเหลือ https://github.com/cpiber/NebulaEnhance/issues
ภาษาที่รองรับ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_title__",
    "description": "__MSG_extensionDescription__",
    "version": "1.4.0",
    "icons": {
        "64": "icons\/icon_64.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.nebula.app\/*",
                "*:\/\/*.nebula.tv\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "scripts\/content_script.js"
            ],
            "css": [
                "styles\/content.css"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "scripts\/player.js"
    ],
    "permissions": [
        "storage",
        "*:\/\/content.api.nebula.app\/*",
        "*:\/\/*.nebula.tv\/*"
    ],
    "optional_permissions": [
        "*:\/\/*.googleapis.com\/*"
    ],
    "browser_action": {
        "default_icon": {
            "64": "icons\/icon_64.png",
            "128": "icons\/icon_128.png"
        },
        "default_title": "__MSG_title__"
    },
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "default_locale": "en"
}