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文件

下載Webtoon viewer landscape mode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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
        }
    ]
}