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

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

擴展使用說明

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

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

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

擴展基本資訊

名稱 REye REye
ID geoogknlmjhpkndbjlidpahcclnemnip
官方網址 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:\/\/*\/*"
            ]
        }
    ]
}