Last active
June 25, 2022 04:37
-
-
Save stefansundin/7f60c35de8e0a6c17dd9be9ce9345965 to your computer and use it in GitHub Desktop.
Make audio players 100% wide in Chrome. https://chrome.google.com/webstore/detail/wide-audio-players/nhimhabjmplhihabgdijoeggnkalfkme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
video { | |
width: 100%; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"manifest_version": 3, | |
"name": "Wide audio players", | |
"version": "1.1", | |
"description": "Make audio players 100% wide.", | |
"content_scripts": [ | |
{ | |
"matches": [ | |
"*://*/*.aac*", | |
"*://*/*.flac*", | |
"*://*/*.m4a*", | |
"*://*/*.mka*", | |
"*://*/*.mp3*", | |
"*://*/*.ogg*", | |
"*://*/*.opus*", | |
"*://*/*.wav*", | |
"file://*/*.aac*", | |
"file://*/*.flac*", | |
"file://*/*.m4a*", | |
"file://*/*.mka*", | |
"file://*/*.mp3*", | |
"file://*/*.ogg*", | |
"file://*/*.opus*", | |
"file://*/*.wav*" | |
], | |
"css": ["main.css"], | |
"all_frames": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment