Reverse Youtube
Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.
什么是Reverse Youtube?
Reverse Youtube是由https://citadelle-du-web.com开发的Chrome扩展程序,该扩展的主要功能是“Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.”。
扩展截图
下载Reverse Youtube扩展crx文件
下载Reverse Youtube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension swaps 'primary video' and 'related contents' layouts in youtube.com
扩展基本信息
名称 | Reverse Youtube |
ID | bbkebkkkocmacciojigkliggadljbmai |
官方URL | https://chromewebstore.google.com/detail/reverse-youtube/bbkebkkkocmacciojigkliggadljbmai |
简介 | Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts. |
文件大小 | 53.5 KB |
安装次数 | 583 |
当前版本 | 1.0 |
更新时间 | 2021-03-05 |
上架时间 | 2021-03-04 |
评分 | 3.00/5 共2次评分 |
开发者 | https://citadelle-du-web.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://citadelle-du-web.com/projects/reverse-youtube |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0", "name": "Reverse Youtube", "description": "Made to avoid torticollis while using a secondary screen. This extension swaps 'primary video' and 'related contents' layouts.", "permissions": [ "storage" ], "browser_action": { "default_title": "Reverse Youtube", "default_popup": "popup.html", "default_icon": { "16": "images\/logo-16.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "images\/logo-16.png", "32": "images\/logo-32.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" } } |