Amazing Salesforce Chrome Extension

This is the most amazing Salesforce Chrome Extension

ما هو Amazing Salesforce Chrome Extension؟

Amazing Salesforce Chrome Extension هو إضافة Chrome تم تطويرها بواسطة Enrico Murru، والميزة الرئيسية لها هي "This is the most amazing Salesforce Chrome Extension".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Amazing Salesforce Chrome Extension

قم بتنزيل ملفات الامتداد Amazing Salesforce Chrome Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Amazing Salesforce Chrome Extension Amazing Salesforce Chrome Extension
ID mmkccibgnkbmlhgddpnipfciejgfdaoc
عنوان URL الرسمي https://chromewebstore.google.com/detail/amazing-salesforce-chrome/mmkccibgnkbmlhgddpnipfciejgfdaoc
الوصف This is the most amazing Salesforce Chrome Extension
حجم الملف 159 KB
عدد التثبيتات 85
النسخة الحالية 0.0.5
آخر تحديث 2017-11-15
تاريخ النشر 2017-11-15
المطور Enrico Murru
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://enree.co
عنوان صفحة المساعدة https://enree.co
عنوان صفحة سياسة الخصوصية https://organizer.solutions/privacypolicy.html
اللغات المدعومة 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"
}