|
| 1 | +# AlterVP |
| 2 | + |
| 3 | +## Haven't I heard of this? |
| 4 | +You may have, indeed! It was a [tool created by xpde/woxly](https://www.byet.net/index.php?/topic/2705-altervp/), that unfortunately disappeared. |
| 5 | +There was no archive of it available, so I [(Anyx)](https://github.com/4yx) recreated it from scratch. |
| 6 | + |
| 7 | +## What does it do? |
| 8 | +It has the following features: |
| 9 | +* Change the Title |
| 10 | +* Change the Protocol |
| 11 | +* Change the Logo |
| 12 | +* Change the Theme |
| 13 | +* Add your own Credits |
| 14 | +* Organized Code |
| 15 | +* Clean Setup usage |
| 16 | + |
| 17 | +## Where should I put it? |
| 18 | +Put it in the Footer Advert Area. |
| 19 | + |
| 20 | +## How can I install it? |
| 21 | +Apply this code anywhere, within a script tag: |
| 22 | +```js |
| 23 | +const AlterVP = { |
| 24 | + title: "AlterVP - vPanel", |
| 25 | + logo: "logo.png", |
| 26 | + protocol: "https", |
| 27 | + theme: "dark", |
| 28 | + category: "normal", // normal, lite, lightspace |
| 29 | + credits: { |
| 30 | + desc: "AlterVP", |
| 31 | + logo: "small-logo.png" |
| 32 | + } |
| 33 | +}; |
| 34 | +``` |
| 35 | +Replace the values inside with the ones you want for your panel. |
| 36 | + |
| 37 | +Afterwards, create a script tag with `src` pointing to `altervp.js` or `altervp.min.js` for the minified version. |
| 38 | + |
| 39 | +We have also provided a ready code below, along with an explanation as to why GitHub's RAW file output cannot be used. |
| 40 | + |
| 41 | +### Content-Type Header Errors |
| 42 | +The RAW option on GitHub can return an incorrect Content-Type header which makes the code not load at all. |
| 43 | +To solve this, we need an external service which adds the correct type, like jsDelivr, or our CDN. |
| 44 | + |
| 45 | +The full code, using jsDelivr: |
| 46 | +```html |
| 47 | +<script type="text/javascript"> |
| 48 | +const AlterVP = { |
| 49 | + title: "AlterVP - vPanel", |
| 50 | + logo: "logo.png", |
| 51 | + protocol: "https", |
| 52 | + theme: "dark", |
| 53 | + category: "normal", // normal, lite, lightspace |
| 54 | + credits: { |
| 55 | + desc: "AlterVP", |
| 56 | + logo: "small-logo.png" |
| 57 | + } |
| 58 | +}; |
| 59 | +</script> |
| 60 | +< script src= "https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected]/altervp/altervp.js" type= "text/javascript"></ script> |
| 61 | +``` |
| 62 | +Alternatively, you can use our CDN: |
| 63 | +```html |
| 64 | +<script type="text/javascript"> |
| 65 | +const AlterVP = { |
| 66 | + title: "AlterVP - vPanel", |
| 67 | + logo: "logo.png", |
| 68 | + protocol: "https", |
| 69 | + theme: "dark", |
| 70 | + category: "normal", // normal, lite, lightspace |
| 71 | + credits: { |
| 72 | + desc: "AlterVP", |
| 73 | + logo: "small-logo.png" |
| 74 | + } |
| 75 | +}; |
| 76 | +</script> |
| 77 | +<script src="https://vpc.cdn.wybenetwork.com/altervp/altervp.js" type="text/javascript"></script> |
| 78 | +``` |
| 79 | +Feel free to remove the comment line symbol (``//``) that explains the type of theme categories you can have. |
| 80 | + |
| 81 | +## Changelog |
| 82 | +* Created on 14 September 2018 by [woxly](https://github.com/woxly) |
| 83 | +* Modified on 14 September 2018 by [woxly](https://github.com/woxly) |
| 84 | +* Lost in time |
| 85 | +* Recreated on 30 August 2022 by [Anyx](https://github.com/4yx) |
0 commit comments