Skip to content

Commit

Permalink
Customized for Vori
Browse files Browse the repository at this point in the history
- Updated name and icons
- Defaulting to Vori go host
- Removed UI popup
  • Loading branch information
clintonb committed Oct 30, 2024
1 parent 3e1250b commit 9c2e768
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.envrc
tmp
.idea/
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Golink (go/link)

> ⚠️This fork is intended for internal Vori usage. We have customize the extension to work for
our [Trotto server](https://github.com/voriteam/go-links).

A URL shortener for creating concise, memorable short links, suitable for organization-scoped use, such as in companies or schools.

https://github.com/nownabe/golink/assets/1286807/9337f9f8-b3de-40bd-879c-f21b8d441604
Expand Down Expand Up @@ -171,4 +174,4 @@ You can enforce Golink Chrome extension to be installed in your organization mem
```
-->
-->
Binary file modified extension/icons/128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed extension/icons/16.png
Binary file not shown.
Binary file removed extension/icons/256.png
Binary file not shown.
Binary file removed extension/icons/32.png
Binary file not shown.
Binary file modified extension/icons/48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 3 additions & 9 deletions extension/manifest.release.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,15 @@
{
"manifest_version": 3,
"name": "Golink",
"version": "0.0.14",

"action": {
"default_popup": "popup.html"
},
"name": "Vori GoLinks",
"version": "1.25",
"description": "Golink is a private URL shortener that transforms long URLs into crisp 'go/' links, seamlessly redirecting to the original URLs.",
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
},

"author": {
"email": "[email protected]"
"email": "[email protected]"
},

"background": {
Expand Down
3 changes: 3 additions & 0 deletions extension/src/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ export async function getGolinkUrl(): Promise<string | null> {
return url;
}

// Use Vori's default
return 'https://golinks.vori.com'

console.debug(`[getGolinkUrl] url not found in storage`);
return null;
}
Expand Down

0 comments on commit 9c2e768

Please sign in to comment.