REye

REye is a video assistant that can rotate the video screen. Supports bilibili, youtube .

REye란 무엇입니까?

REye은(는) jyt321에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "REye is a video assistant that can rotate the video screen. Supports bilibili, youtube ."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

REye 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        REye 是一个视频助手,可以旋转视频画面.支持bilibili.

REye是个B站视频助手, 可以旋转视频画面. 再也不用说 "治好我的颈椎病了".  

安装完成后进入播放的视频页面,点击右下角的 "正时针旋转90°" 按钮就可以旋转视频画面了.                    

확장 프로그램 기본 정보

이름 REye REye
ID geoogknlmjhpkndbjlidpahcclnemnip
공식 URL https://chromewebstore.google.com/detail/reye/geoogknlmjhpkndbjlidpahcclnemnip
설명 REye is a video assistant that can rotate the video screen. Supports bilibili, youtube .
파일 크기 20.23 KB
설치 횟수 117
현재 버전 1.0.4
최근 업데이트 2022-04-02
출시 날짜 2020-02-18
평점 1.50/5 총 2 개의 평점
개발자 jyt321
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL http://www.jyt321.com/privacy
지원되는 언어 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "short_name": "__MSG_extShortName__",
    "version": "1.0.4",
    "default_locale": "zh_CN",
    "description": "__MSG_extDesc__",
    "icons": {
        "12": "images\/icon_12.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "homepage_url": "http:\/\/www.jyt321.com\/",
    "author": "admin ",
    "permissions": [
        "notifications",
        "storage"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_title": "reye",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/rotate.png"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}