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