Skip to content

Commit

Permalink
last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Sir. Automation committed Feb 23, 2024
1 parent 6c18d12 commit d0b6e2d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Again,Why Salesforce
# Why Salesforce
This extension allows users to create custom tabs in Setup for their most-used settings

[Demo Video](https://youtu.be/BtlKRvac9ZQ)
Expand All @@ -19,8 +19,9 @@ This extension allows users to create custom tabs in Setup for their most-used s
- [x] Open full urls in new tab
- [ ] Better solutions for waiting until Salesforce setup is completely loaded
- [ ] Utils class for templates or other shared code
- [x] Allow links to SF Classic #4
- [x] Import & Export tabs #11
- [x] Favourite button on current Setup page #12
- [x] Import & Export tabs

Contributors
- [Warren Walters](https://www.linkedin.com/in/walters954/)
Expand Down
2 changes: 1 addition & 1 deletion background.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const isChrome = navigator.userAgent.includes("Chrome");
const browserObj = isChrome ? chrome : browser;
const whyKey = 'againWhySalesforce';
const whyKey = 'whySalesforce';

function addKey(items, callback){
items.key = whyKey;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "again-why-salesforce",
"name": "why-salesforce",
"scripts": {
"dev-firefox": "node build-manifest.js firefox",
"dev-chrome": "node build-manifest.js chrome"
Expand Down
12 changes: 6 additions & 6 deletions template-manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"manifest_version": 3,
"name": "Again, Why Salesforce",
"name": "Why Salesforce",
"version": "1.3",
"permissions": ["storage"],
"description": "Stuff that Salesforce should have already added... Easily setting favourite tabs in Setup.",
"homepage_url": "https://github.com/astisme/again-Why-Salesforce",
"homepage_url": "https://github.com/walters954/why-ralesforce",
"content_scripts": [
{
"matches": [
Expand All @@ -21,7 +21,7 @@
"128": "images/whysf128.png"
},
"action": {
"default_title": "Again, Why Salesforce",
"default_title": "Why Salesforce",
"default_popup": "./action/popup.html"
},
"background": {
Expand All @@ -31,11 +31,11 @@
"minimum_chrome_version": "120.0.0",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "112.0.2"
"id": "whysf@plugin",
"strict_min_version": "117"
},
"safari": {
"strict_min_version": "14"
"strict_min_version": "17.2"
}
},
"incognito": "spanning"
Expand Down

0 comments on commit d0b6e2d

Please sign in to comment.