Boostr for Salesforce

Boostr for Salesforce

Boost your admin and developer productivity on Salesforce.com with Boostr! Current features include: - Ability to search when…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Boostr for Salesforce",
  "short_name": "Boostr SF",
  "version": "0.99",
  "icons": {
    "128": "icon.png"
  },
  "author": "Matt Simonis",
  "web_accessible_resources": [
    {
      "resources": [
        "js/fieldsetinject.js",
        "js/setupcheckallinject.js"
      ],
      "matches": [
        "https://*.salesforce.com/*",
        "https://*.force.com/*",
        "https://*.cloudforce.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.salesforce.com/*",
        "https://*.force.com/*",
        "https://*.cloudforce.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/scripts.js",
        "js/setupsearch.js",
        "js/setupcheckall.js",
        "js/flowerrorlink.js",
        "js/listviewrowclick.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://*.salesforce.com/*AddToPackageFromChangeMgmtUi*",
        "https://*.force.com/*AddToPackageFromChangeMgmtUi*",
        "https://*.cloudforce.com/*AddToPackageFromChangeMgmtUi*"
      ],
      "js": [
        "js/changeset.js"
      ],
      "css": [
        "css/changeset.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://*.salesforce.com/*FieldSetEditor*",
        "https://*.force.com/*FieldSetEditor*",
        "https://*.cloudforce.com/*FieldSetEditor*"
      ],
      "js": [
        "js/fieldset.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://*.salesforce.com/*CustomObjects*",
        "https://*.force.com/*CustomObjects*",
        "https://*.cloudforce.com/*CustomObjects*",
        "https://*.salesforce.com/*NewCustomFieldStageManager*",
        "https://*.force.com/*NewCustomFieldStageManager*",
        "https://*.cloudforce.com/*NewCustomFieldStageManager*",
        "https://*.salesforce.com/*101*",
        "https://*.force.com/*101*",
        "https://*.cloudforce.com/*101*"
      ],
      "js": [
        "js/apiname.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://*.salesforce.com/*FieldHistoryTracking*",
        "https://*.force.com/*FieldHistoryTracking*",
        "https://*.cloudforce.com/*FieldHistoryTracking*"
      ],
      "js": [
        "js/fieldhistorycount.js"
      ]
    },
    {
      "matches": [
        "https://*.salesforce.com/*NewCustomFieldStageManager*",
        "https://*.force.com/*NewCustomFieldStageManager*",
        "https://*.cloudforce.com/*NewCustomFieldStageManager*"
      ],
      "js": [
        "js/addtolayout.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://*.salesforce.com/*systemOverview*",
        "https://*.force.com/*systemOverview*",
        "https://*.cloudforce.com/*systemOverview*"
      ],
      "js": [
        "js/systemoverview.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://*.salesforce.com/*ApexTestQueuePage*",
        "https://*.force.com/*ApexTestQueuePage*",
        "https://*.cloudforce.com/*ApexTestQueuePage*"
      ],
      "js": [
        "js/selectfailedtests.js"
      ],
      "all_frames": true
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage",
    "tabs"
  ],
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  }
}