Webtoon viewer landscape mode

Extension, that allows you rotate viewer, so it's easy to read landscape webtoon episodes on desktop

Webtoon viewer landscape mode란 무엇입니까?

Webtoon viewer landscape mode은(는) mlocik97에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension, that allows you rotate viewer, so it's easy to read landscape webtoon episodes on desktop"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Webtoon viewer landscape mode 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        We love webtoons... Extension was created, because as primarly desktop user, reading webtoon episodes, that were made in landscape mode by author was annoying for one reason:

While it's easy to rotate your mobile device, it's not as easy to do with laptops or desktops (if you don't have Pivot monitor), that means if you opened episode that was made in landscape mode by author, text was rotated by 90° on screen, impossible to read it easily. And if you don't want to break neck or rotate whole laptop (which is nonsense), it's better to have feature that allows you to rotate episode viewer, so landscape is readable on desktop.

For example second half of episode https://www.webtoons.com/en/thriller/soulwinder/ep-39-forebode/viewer?title_no=2880&episode_no=39 has text rotated by 90° on desktop. Extension fix the issue.

This extension add button to toolbar (that is at top of website in right corner, for now it's only white square as icon is missing), that allows you to switch to "landscape" mode (or back to standard mode). 

Now we can easily read landscape episodes too. See screenshot of the episode above in landscape mode.

Known issues:
- white padding at start of episode                    

확장 프로그램 기본 정보

이름 Webtoon viewer landscape mode Webtoon viewer landscape mode
ID gcobjdfheleeeklidiphjkajigldapem
공식 URL https://chromewebstore.google.com/detail/webtoon-viewer-landscape/gcobjdfheleeeklidiphjkajigldapem
설명 Extension, that allows you rotate viewer, so it's easy to read landscape webtoon episodes on desktop
파일 크기 9.93 KB
설치 횟수 526
현재 버전 0.2.1
최근 업데이트 2023-03-10
출시 날짜 2023-02-26
개발자 mlocik97
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Mlocik97/Webtoon-viewer-landscape-mode
도움말 페이지 URL https://github.com/Mlocik97/Webtoon-viewer-landscape-mode/discussions
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Webtoon viewer landscape mode",
    "version": "0.2.1",
    "author": "Mlocik97",
    "description": "Extension, that allows you rotate viewer, so it's easy to read landscape webtoon episodes on desktop",
    "content_scripts": [
        {
            "js": [
                ".\/index.js"
            ],
            "css": [
                ".\/style.css"
            ],
            "matches": [
                "https:\/\/webtoons.com\/**\/viewer*",
                "https:\/\/*.webtoons.com\/**\/viewer*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                "https:\/\/webtoons.com\/*",
                "https:\/\/*.webtoons.com\/*"
            ],
            "use_dynamic_url": true
        }
    ]
}