First commit UwU

This commit is contained in:
Nikurasu 2022-11-24 15:36:33 +01:00
commit 738bb91178
2 changed files with 15 additions and 0 deletions

12
GitLab/SwitchProfile.js Normal file
View File

@ -0,0 +1,12 @@
// Switch GitLab Profile
(
function() {
user = prompt('Input Git User to switch to:');
link = window.location.href.split('/');
link[3] = user;
window.location.href = link.join('/');
}()
);
// Minified
(function(){user=prompt('Input Git User to switch to:');link=window.location.href.split('/');link[3]=user;window.location.href=link.join('/');}());

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Nikus Bookmarklets
Just my collection of bookmarklets. Use them if they are useful for you too.