-
Notifications
You must be signed in to change notification settings - Fork 4
[main][582598](UserStory) Plugin Example - Populate Custom Hostname #108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
shivarkarimi
merged 8 commits into
main
from
582598-dev-plugin-example-populate-custom-hostname
Apr 30, 2025
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
d86df6a
[582724](UserStory) Add a plugin to hide the version up button in the…
BTMorton c8d999b
[582724](UserStory) Add license header to the version up away plugin
BTMorton f4d5d68
[develop][582598](UserStory) Added populate custom hostname plugin files
shivarkarimi ad09161
[develop][582598](UserStory Updated plugin description
shivarkarimi 7f4c911
[develop][582598](UserStory) Added jsdoc and updated pathname to href…
shivarkarimi 32c76ad
[develop][582598](UserStory) PR feedback - updated log line and added…
shivarkarimi 799e787
Merge branch 'main' into 582598-dev-plugin-example-populate-custom-ho…
shivarkarimi 6055271
[develop][582598](UserStory) PR feedback: moved copyright
shivarkarimi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| /** | ||
| * Copyright (c) 2025 The Foundry Visionmongers Ltd. All Rights Reserved. | ||
| */ | ||
|
|
||
| /** | ||
| * Set your default hostname here. | ||
| */ | ||
| const DEFAULT_HOST_NAME = 'your-default-hostname.com' | ||
|
|
||
| /** | ||
| * Sets the default hostname in the hostname input when on the login page and the input value is empty. | ||
| */ | ||
| function setDefaultHostname() { | ||
| if (!window.location.href.includes('login')) { | ||
| return; | ||
| } | ||
|
|
||
| const hostInput = document.querySelector('input#login_hostname'); | ||
| if (!hostInput) { | ||
| console.warn('Default Hostname Setter: No hostname input found found.'); | ||
| return; | ||
| } | ||
|
|
||
| if (hostInput.value.trim() === '') { | ||
| hostInput.value = DEFAULT_HOST_NAME; | ||
| console.info('Default Hostname Setter: Hostname set.'); | ||
| } | ||
| } | ||
|
|
||
| if (document.readyState === 'loading') { | ||
| document.addEventListener('DOMContentLoaded', setDefaultHostname); | ||
| } else { | ||
| setDefaultHostname(); | ||
| } | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| { | ||
| "name": "Default Hostname Setter", | ||
| "version": "1.0", | ||
| "description": "Automatically sets a default hostname on the login page if hostname input value is empty.", | ||
| "content_scripts": [ | ||
| { | ||
| "matches": ["file://*"], | ||
| "js": ["main.js"], | ||
| "run_at": "document_idle" | ||
| } | ||
| ], | ||
| "manifest_version": 3 | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.