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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ https://enree.co
URL หน้านโยบายความเป็นส่วนตัว 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"
}