Enhancer for Nebula
Enhancer for Nebula. Adds some quality of life features to the nebula player.
Enhancer for Nebula란 무엇입니까?
Enhancer for Nebula은(는) https://web.piber.at에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enhancer for Nebula. Adds some quality of life features to the nebula player."입니다.
확장 프로그램 스크린샷
Enhancer for Nebula 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } |