mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-10 10:11:46 +00:00
13 lines
222 B
JavaScript
13 lines
222 B
JavaScript
// Define global chrome object to be compliant with the extension code
|
|
global.chrome = {
|
|
runtime: {
|
|
getManifest: () => ({
|
|
version: 1
|
|
})
|
|
}
|
|
};
|
|
|
|
module.exports = () => {
|
|
require("YoutubeNonStop/autoconfirm.js");
|
|
};
|