Return Standalone Youtube Video Page

Opens the Video seperately in the same tab instead of being embedded in the page, just like it was before the update.

Return Standalone Youtube Video Page란 무엇입니까?

Return Standalone Youtube Video Page은(는) https://sanjibsen.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Opens the Video seperately in the same tab instead of being embedded in the page, just like it was before the update."입니다.

확장 프로그램 스크린샷

screenshot

Return Standalone Youtube Video Page 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ## 👏 Free and Open Source

- This extension will always be free and open sourced.
- Source Code: https://github.com/sanjib-sen/return-standalone-youtube-video-page

## 🎉 Features

- Very Tiny (> 8KB) and simple to use
- Made in Pure JavaScript (Less than 30 Lines of Code)
- Return the standalone video page
- Return the standalone playlist page
- Supports Any chromium based browser. (Support for Firefox is coming soon based on user requests)

## ✍️ Authors

- [@sanjib-sen](https://github.com/sanjib-sen) - Idea & Initial work

## 🎉 Acknowledgements

- The UI is slightly inspired by [Return YouTube Dislike](https://github.com/Anarios/return-youtube-dislike)                    

확장 프로그램 기본 정보

이름 Return Standalone Youtube Video Page Return Standalone Youtube Video Page
ID kpeeiilndiddkdpbhdafkkgnjjlnllob
공식 URL https://chromewebstore.google.com/detail/return-standalone-youtube/kpeeiilndiddkdpbhdafkkgnjjlnllob
설명 Opens the Video seperately in the same tab instead of being embedded in the page, just like it was before the update.
파일 크기 9.89 KB
설치 횟수 60
현재 버전 0.2
최근 업데이트 2023-05-15
출시 날짜 2023-05-08
평점 3.33/5 총 3 개의 평점
개발자 https://sanjibsen.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.sanjibsen.com/return-standalone-youtube-video-page
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Return Standalone Youtube Video Page",
    "description": "Opens the Video seperately in the same tab instead of being embedded in the page, just like it was before the update.",
    "version": "0.2",
    "author": "[email protected]",
    "short_name": "RYVS",
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        },
        "default_title": "Bring Back Standalone Youtube Video Page",
        "default_popup": "src\/popup.html"
    },
    "background": {
        "service_worker": "src\/scripts\/background.js"
    }
}