0
0
Fork 0
mirror of https://github.com/VueTubeApp/VueTube synced 2024-11-01 09:22:39 +00:00
VueTube/NUXT/plugins/tempPlugins/demoPlugin.js
deepsource-autofix[bot] b252fa79c0
Format code with prettier
This commit fixes the style issues introduced in 38b0de7 according to the output
from prettier.

Details: https://deepsource.io/gh/VueTubeApp/VueTube/transform/9d827cbf-455d-44d1-b340-8f6b1836b896/
2022-06-22 05:24:06 +00:00

32 lines
950 B
JavaScript

module.exports = {
manifest: {
name: "Test plugin", // Required
vuetube: "*",
version: "1.0", // Required
author: "Frontesque", // Required
description:
"A plugin to test how vuetube handles plugins // Add 'Hello, World!' to the home page.", // Required
homepage: "https://github.com/Frontesque/VueTube-Example-Plugin",
license: "GPL-3.0", // Required
},
/*************************
* Execute code on ALL VueTube pages
************************/
global: function () {
console.log(
"This code is now executed when ALL vuetube pages (including settings) are loaded."
);
},
/*************************
* Execute code on SPECIFIC VueTube pages
*
* You can view what page you intend to inject code into by looking at `~/NUXT/pages/` in the main VueTube repo
************************/
pages: {
home: function () {
// Execute code on JUST the home page
},
},
};