-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5dc3019
commit 9a0e8f8
Showing
46 changed files
with
1,843 additions
and
64 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -202,3 +202,7 @@ publish | |
*.xpi | ||
*.crx | ||
package-lock.json | ||
|
||
|
||
.DS_Store | ||
xcuserdata |
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
{ | ||
|
||
} |
This file contains 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,88 @@ | ||
{ | ||
"description": "This extension improves the Hangar page on RobertsSpaceIndustries.com", | ||
"name": "Star Citizen Hangar XPLORer", | ||
"short_name": "HangarXPLOR", | ||
"version": "0.0.0.1", | ||
"author": "/u/alluran (Peter Dolkens)", | ||
"icons": { | ||
"128": "icons/icon_128.png" | ||
}, | ||
"manifest_version": 3, | ||
"permissions": [ | ||
"storage", | ||
"unlimitedStorage" | ||
], | ||
"host_permissions": [ | ||
"https://robertsspaceindustries.com/*", | ||
"https://www.robertsspaceindustries.com/*" | ||
], | ||
"action": { | ||
"default_icon": { | ||
"48": "icons/icon_48-fill.png", | ||
"128": "icons/icon_128-fill.png" | ||
}, | ||
"default_popup": "ui_resources/HangarXPLOR.Settings.html" | ||
}, | ||
"content_scripts": [ | ||
{ | ||
"matches": [ | ||
"https://robertsspaceindustries.com/account/pledges*", | ||
"https://www.robertsspaceindustries.com/account/pledges*" | ||
], | ||
"js": [ | ||
"content_scripts/loader.js" | ||
], | ||
"run_at": "document_end" | ||
} | ||
], | ||
"web_accessible_resources": [ | ||
{ | ||
"matches": [ | ||
"https://robertsspaceindustries.com/*", | ||
"https://www.robertsspaceindustries.com/*" | ||
], | ||
"resources": [ | ||
"web_resources/ship-codes.json", | ||
"web_resources/shims.chrome.storage.js", | ||
"web_resources/fuse.min.js", | ||
"web_resources/HangarXPLOR.BulkUI.js", | ||
"web_resources/HangarXPLOR.Button.js", | ||
"web_resources/HangarXPLOR.Components.js", | ||
"web_resources/HangarXPLOR.DrawUI.js", | ||
"web_resources/HangarXPLOR.Download.js", | ||
"web_resources/HangarXPLOR.Dropdown.js", | ||
"web_resources/HangarXPLOR.Filter.js", | ||
"web_resources/HangarXPLOR.LoadPage.js", | ||
"web_resources/HangarXPLOR.LoadCache.js", | ||
"web_resources/HangarXPLOR.LoadSettings.js", | ||
"web_resources/HangarXPLOR.Log.js", | ||
"web_resources/HangarXPLOR.Pager.js", | ||
"web_resources/HangarXPLOR.ParseComponent.js", | ||
"web_resources/HangarXPLOR.ParseCoupon.js", | ||
"web_resources/HangarXPLOR.ParseDecoration.js", | ||
"web_resources/HangarXPLOR.ParseEquipment.js", | ||
"web_resources/HangarXPLOR.ParseHangar.js", | ||
"web_resources/HangarXPLOR.ParsePledge.js", | ||
"web_resources/HangarXPLOR.ParseReward.js", | ||
"web_resources/HangarXPLOR.ParseShip.js", | ||
"web_resources/HangarXPLOR.ParseSkin.js", | ||
"web_resources/HangarXPLOR.ParseUpgrade.js", | ||
"web_resources/HangarXPLOR.PreProcess.js", | ||
"web_resources/HangarXPLOR.ProcessPage.js", | ||
"web_resources/HangarXPLOR.Render.js", | ||
"web_resources/HangarXPLOR.SaveCache.js", | ||
"web_resources/HangarXPLOR.SaveSettings.js", | ||
"web_resources/HangarXPLOR.Search.js", | ||
"web_resources/HangarXPLOR.SearchBox.js", | ||
"web_resources/HangarXPLOR.Ships.js", | ||
"web_resources/HangarXPLOR.Sort.js", | ||
"web_resources/HangarXPLOR.Templates.js", | ||
"web_resources/HangarXPLOR.Toggle.js", | ||
"web_resources/HangarXPLOR.Debug.js", | ||
"web_resources/HangarXPLOR.js", | ||
"web_resources/HangarXPLOR.css", | ||
"debug/*.html" | ||
] | ||
} | ||
] | ||
} |
This file contains 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
This file contains 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 |
---|---|---|
|
@@ -3,5 +3,11 @@ | |
"gecko": { | ||
"id": "[email protected]" | ||
} | ||
}, | ||
|
||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "[email protected]" | ||
} | ||
} | ||
} |
This file contains 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 |
---|---|---|
@@ -1,69 +1,94 @@ | ||
{ | ||
"description": "This extension improves the Hangar page on RobertsSpaceIndustries.com", | ||
"manifest_version": 2, | ||
"name": "Star Citizen Hangar XPLORer", | ||
"short_name": "HangarXPLOR", | ||
"version": "0.0.0.1", | ||
|
||
"author": "/u/alluran (Peter Dolkens)", | ||
|
||
"permissions": [ "https://robertsspaceindustries.com/*", "storage" ], | ||
|
||
"icons": { | ||
"128": "icons/icon_128.png" | ||
}, | ||
"browser_action": { | ||
"default_icon": { | ||
"48": "icons/icon_48-fill.png", | ||
"128": "icons/icon_128-fill.png" | ||
}, | ||
"default_popup": "ui_resources/HangarXPLOR.Settings.html" | ||
"manifest_version": 3, | ||
"permissions": [ | ||
"storage", | ||
"unlimitedStorage" | ||
], | ||
"host_permissions": [ | ||
"https://robertsspaceindustries.com/*", | ||
"https://www.robertsspaceindustries.com/*" | ||
], | ||
"action": { | ||
"default_icon": { | ||
"48": "icons/icon_48-fill.png", | ||
"128": "icons/icon_128-fill.png" | ||
}, | ||
"default_popup": "ui_resources/HangarXPLOR.Settings.html" | ||
}, | ||
"content_scripts": [{ | ||
"matches": ["https://robertsspaceindustries.com/account/pledges*", "https://www.robertsspaceindustries.com/account/pledges*"], | ||
"js": ["content_scripts/loader.js"], | ||
"run_at": "document_end" | ||
}], | ||
"content_scripts": [ | ||
{ | ||
"matches": [ | ||
"https://robertsspaceindustries.com/account/pledges*", | ||
"https://www.robertsspaceindustries.com/account/pledges*" | ||
], | ||
"js": [ | ||
"content_scripts/loader.js" | ||
], | ||
"run_at": "document_end" | ||
} | ||
], | ||
"web_accessible_resources": [ | ||
"web_resources/ship-codes.json", | ||
"web_resources/shims.chrome.storage.js", | ||
"web_resources/fuse.min.js", | ||
"web_resources/HangarXPLOR.BulkUI.js", | ||
"web_resources/HangarXPLOR.Button.js", | ||
"web_resources/HangarXPLOR.Components.js", | ||
"web_resources/HangarXPLOR.DrawUI.js", | ||
"web_resources/HangarXPLOR.Download.js", | ||
"web_resources/HangarXPLOR.Dropdown.js", | ||
"web_resources/HangarXPLOR.Filter.js", | ||
"web_resources/HangarXPLOR.LoadPage.js", | ||
"web_resources/HangarXPLOR.LoadCache.js", | ||
"web_resources/HangarXPLOR.LoadSettings.js", | ||
"web_resources/HangarXPLOR.Log.js", | ||
"web_resources/HangarXPLOR.Pager.js", | ||
"web_resources/HangarXPLOR.ParseComponent.js", | ||
"web_resources/HangarXPLOR.ParseCoupon.js", | ||
"web_resources/HangarXPLOR.ParseDecoration.js", | ||
"web_resources/HangarXPLOR.ParseEquipment.js", | ||
"web_resources/HangarXPLOR.ParseHangar.js", | ||
"web_resources/HangarXPLOR.ParsePledge.js", | ||
"web_resources/HangarXPLOR.ParseReward.js", | ||
"web_resources/HangarXPLOR.ParseShip.js", | ||
"web_resources/HangarXPLOR.ParseSkin.js", | ||
"web_resources/HangarXPLOR.ParseUpgrade.js", | ||
"web_resources/HangarXPLOR.PreProcess.js", | ||
"web_resources/HangarXPLOR.ProcessPage.js", | ||
"web_resources/HangarXPLOR.Render.js", | ||
"web_resources/HangarXPLOR.SaveCache.js", | ||
"web_resources/HangarXPLOR.SaveSettings.js", | ||
"web_resources/HangarXPLOR.Search.js", | ||
"web_resources/HangarXPLOR.SearchBox.js", | ||
"web_resources/HangarXPLOR.Ships.js", | ||
"web_resources/HangarXPLOR.Sort.js", | ||
"web_resources/HangarXPLOR.Templates.js", | ||
"web_resources/HangarXPLOR.Toggle.js", | ||
"web_resources/HangarXPLOR.Debug.js", | ||
"web_resources/HangarXPLOR.js", | ||
"web_resources/HangarXPLOR.css", | ||
"debug/*.html" | ||
] | ||
{ | ||
"matches": [ | ||
"https://robertsspaceindustries.com/*", | ||
"https://www.robertsspaceindustries.com/*" | ||
], | ||
"resources": [ | ||
"web_resources/ship-codes.json", | ||
"web_resources/shims.chrome.storage.js", | ||
"web_resources/fuse.min.js", | ||
"web_resources/HangarXPLOR.BulkUI.js", | ||
"web_resources/HangarXPLOR.Button.js", | ||
"web_resources/HangarXPLOR.Components.js", | ||
"web_resources/HangarXPLOR.DrawUI.js", | ||
"web_resources/HangarXPLOR.Download.js", | ||
"web_resources/HangarXPLOR.Dropdown.js", | ||
"web_resources/HangarXPLOR.Filter.js", | ||
"web_resources/HangarXPLOR.LoadPage.js", | ||
"web_resources/HangarXPLOR.LoadCache.js", | ||
"web_resources/HangarXPLOR.LoadSettings.js", | ||
"web_resources/HangarXPLOR.Log.js", | ||
"web_resources/HangarXPLOR.Pager.js", | ||
"web_resources/HangarXPLOR.ParseComponent.js", | ||
"web_resources/HangarXPLOR.ParseCoupon.js", | ||
"web_resources/HangarXPLOR.ParseDecoration.js", | ||
"web_resources/HangarXPLOR.ParseEquipment.js", | ||
"web_resources/HangarXPLOR.ParseHangar.js", | ||
"web_resources/HangarXPLOR.ParsePledge.js", | ||
"web_resources/HangarXPLOR.ParseReward.js", | ||
"web_resources/HangarXPLOR.ParseShip.js", | ||
"web_resources/HangarXPLOR.ParseSkin.js", | ||
"web_resources/HangarXPLOR.ParseUpgrade.js", | ||
"web_resources/HangarXPLOR.PreProcess.js", | ||
"web_resources/HangarXPLOR.ProcessPage.js", | ||
"web_resources/HangarXPLOR.Render.js", | ||
"web_resources/HangarXPLOR.SaveCache.js", | ||
"web_resources/HangarXPLOR.SaveSettings.js", | ||
"web_resources/HangarXPLOR.Search.js", | ||
"web_resources/HangarXPLOR.SearchBox.js", | ||
"web_resources/HangarXPLOR.Ships.js", | ||
"web_resources/HangarXPLOR.Sort.js", | ||
"web_resources/HangarXPLOR.Templates.js", | ||
"web_resources/HangarXPLOR.Toggle.js", | ||
"web_resources/HangarXPLOR.Debug.js", | ||
"web_resources/HangarXPLOR.js", | ||
"web_resources/HangarXPLOR.css", | ||
"debug/*.html" | ||
] | ||
} | ||
], | ||
|
||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "[email protected]" | ||
} | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
src/vendor/safari/Shared (App)/Assets.xcassets/AccentColor.colorset/Contents.json
This file contains 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,11 @@ | ||
{ | ||
"colors" : [ | ||
{ | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
Oops, something went wrong.