Rotate the Video Player to the angle you desire.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Video Rotater",
"description": "Rotate the Video Player to the angle you desire.",
"version": "1.2",
"manifest_version": 3,
"permissions": [
"activeTab",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "icon.png"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+R",
"mac": "MacCtrl+R"
},
"description": "Rotate the Video Player."
}
}
}