Youtube-shorts block
Play the Youtube shorts video as if it were a normal video.
Youtube-shorts block란 무엇입니까?
Youtube-shorts block은(는) doma_itachi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Play the Youtube shorts video as if it were a normal video."입니다.
확장 프로그램 스크린샷
Youtube-shorts block 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A extension allows youtube shorts videos to play on a regular page.
*** "Hide shorts video" is now enabled by default!!!!
If you don't want to do that, please disable in option page! ***
The UI of Youtube-shorts is not very well optimized for PCs and has poor functionality.
This extension aims to improve the user experience by displaying short videos in the regular video player.
...utube.com/shorts/"video-id"
↓↓
...utube.com/watch?v="video-id"
Change the URL to something like.
v1.4.1 features
# Added
- German translation from @golgorath
# Changed
- Support new subscription page(Hide shorts video)
v1.4.0 features
# Added
- Support mobile (m.youtube.com)
- Enable "Hide shorts video" by default
v1.3.4 features
# Added
- Block shorts reels (if Hide shorts video is enabled)
v1.3.3 features
# Added
- French translation from @Rathmox
v1.3.2 features
# Added
- Italian translation from @gioxx
v1.3.1 features
# Changed
- Fixed a bug that redirected links that were not short videos containing the string "shorts"
v1.3.0 features
# Added
- Added "Open in regular player" button in the Shorts player
- Block Shorts-related feeds (if Hide shorts video is enabled)
- Add a Release notes
# Changed
- Fixed the problem that the load spinner does not disappear when "Hide Shorts video" is selected
- Optimize "hide shorts video"
If you have any bugs or requests for this extension, please feel free to report them to the author's Twitter (@itachi_yukari) DM (or review). We may be able to help. 확장 프로그램 기본 정보
| 이름 | |
| ID | jiaopdjbehhjgokpphdfgmapkobbnmjp |
| 공식 URL | https://chromewebstore.google.com/detail/youtube-shorts-block/jiaopdjbehhjgokpphdfgmapkobbnmjp |
| 설명 | Play the Youtube shorts video as if it were a normal video. |
| 파일 크기 | 33.77 KB |
| 설치 횟수 | 187,882 |
| 현재 버전 | 1.4.1 |
| 최근 업데이트 | 2023-06-08 |
| 출시 날짜 | 2022-03-02 |
| 평점 | 4.59/5 총 593 개의 평점 |
| 개발자 | doma_itachi |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://github.com/doma-itachi/Youtube-shorts-block |
| 도움말 페이지 URL | https://twitter.com/itachi_yukari |
| 지원되는 언어 | de,en,fr,tr,it,zh-TW,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Youtube-shorts block",
"version": "1.4.1",
"description": "__MSG_ext_desc__",
"default_locale": "en",
"icons": {
"32": "icons\/icon32.png",
"64": "icons\/icon64.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*",
"*:\/\/m.youtube.com\/*"
],
"all_frames": true,
"js": [
"main.js"
],
"css": [
"main.css"
]
}
],
"action": {
"default_icon": {
"32": "icons\/icon32.png",
"64": "icons\/icon64.png",
"128": "icons\/icon128.png"
},
"default_title": "Youtube-shorts block",
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": [
"icons\/to_normal.svg"
],
"matches": [
"*:\/\/*.youtube.com\/*"
]
}
]
} | |