Amazing Salesforce Chrome Extension

This is the most amazing Salesforce Chrome Extension

Vad är Amazing Salesforce Chrome Extension?

Amazing Salesforce Chrome Extension är en Chrome-tillägg utvecklad av Enrico Murru, och dess huvudfunktion är "This is the most amazing Salesforce Chrome Extension".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Amazing Salesforce Chrome Extension-förlängningens CRX-fil

Ladda ner Amazing Salesforce Chrome Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Example Chrome Extension from DF17 session by Enrico Murru (Build your own jaw-dropping Salesforce Chrome Extension).
See https://github.com/enreeco/sf-df17-chrome-ext-sesssion                    

Grundläggande Information om Tillägg

Namn Amazing Salesforce Chrome Extension Amazing Salesforce Chrome Extension
ID mmkccibgnkbmlhgddpnipfciejgfdaoc
Officiell webbadress https://chromewebstore.google.com/detail/amazing-salesforce-chrome/mmkccibgnkbmlhgddpnipfciejgfdaoc
Beskrivning This is the most amazing Salesforce Chrome Extension
Filstorlek 159 KB
Antal Installationer 85
Aktuell Version 0.0.5
Senast Uppdaterad 2017-11-15
Publiceringsdatum 2017-11-15
Utvecklare Enrico Murru
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://enree.co
Hjälpsida URL https://enree.co
URL till Sekretesspolicy Sidan https://organizer.solutions/privacypolicy.html
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Amazing Salesforce Chrome Extension",
    "short_name": "Amazing Salesforce Chrome Extension",
    "description": "This is the most amazing Salesforce Chrome Extension",
    "version": "0.0.5",
    "author": {
        "name": "Enrico Murru",
        "url": "http:\/\/enree.co"
    },
    "homepage_url": "http:\/\/enree.co",
    "permissions": [
        "tabs",
        "storage",
        "cookies",
        "https:\/\/*.salesforce.com\/*",
        "https:\/\/*.force.com\/*"
    ],
    "web_accessible_resources": [
        "options.html",
        "swissknife.html",
        "img\/*"
    ],
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html",
        "default_title": "Amazing Salesforce Chrome Extension"
    },
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*"
            ],
            "all_frames": false,
            "js": [
                "libs\/constants.js",
                "libs\/utils.js",
                "libs\/content.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "libs\/constants.js",
            "libs\/utils.js",
            "libs\/background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html"
}