Skip to content
This repository has been archived by the owner on Oct 5, 2024. It is now read-only.

Commit

Permalink
Changes by matus
Browse files Browse the repository at this point in the history
  • Loading branch information
ashap5 committed Oct 1, 2023
1 parent 13d5bcd commit 2ed69f0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,16 @@

// Create the activate button and profile menu
function createActivateButton() {
const MenuDivUpperButtons = document.createElement('div');
MenuDivUpperButtons.style.display = 'flex';
const activateButton = document.createElement('button');
activateButton.textContent = 'Auto-Trial';
activateButton.style.position = 'fixed';
activateButton.style.top = '10px';
activateButton.style.left = '10px';
activateButton.style.zIndex = '9999';
document.body.appendChild(activateButton);
document.body.appendChild(MenuDivUpperButtons);
MenuDivUpperButtons.append(activateButton);

// Example profiles (you can add more profiles or customize the websites for each profile)
const defaultProfiles = {
Expand Down

0 comments on commit 2ed69f0

Please sign in to comment.