CallShaper Agent Extension

Helper extension for CallShaper agent application functionality.

CallShaper Agent Extensionคืออะไร?

CallShaper Agent Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://callshaper.com และคุณลักษณะหลักของมันคือ "Helper extension for CallShaper agent application functionality."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CallShaper Agent Extension

ดาวน์โหลดไฟล์ส่วนขยาย CallShaper Agent Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This extension provides additional capabilities to the CallShaper agent application.

- Allow screenpop for sites that don't want to be loaded in iframes.
- Allow "Open Webpage" page task to open in an external browser window instead of a new tab in the current window.
- Optionally allow "Click-to-Call" functionality to be added to other webpages the user is viewing.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ CallShaper Agent Extension CallShaper Agent Extension
ID hofjaeagibangaoeiheakhkggpfaaeob
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/callshaper-agent-extensio/hofjaeagibangaoeiheakhkggpfaaeob
คำอธิบาย Helper extension for CallShaper agent application functionality.
ขนาดไฟล์ 14.09 KB
จำนวนการติดตั้ง 659
เวอร์ชันปัจจุบัน 1.3.3
อัปเดตครั้งล่าสุด 2023-09-29
วันที่เผยแพร่ 2019-07-05
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://callshaper.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CallShaper Agent Extension",
    "description": "Helper extension for CallShaper agent application functionality.",
    "version": "1.3.3",
    "manifest_version": 3,
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnk9AdBguo3gQ6g89fxDwf7oehnn5KZEAlTamWHcpu3ccmMbOF1X85AvNguabDhDSRqmDM5qZS3PNWM0xHPhzswbWraP3tyGcvdkpF3vAOM4s5IQXR6S2r0DiThGhsJlfPYnvyG\/m2Kr86q1WsEOIP9goy8boqlLPZbo7qk5PJ7sIRqGqk4LVDleFNmtj9JypIZtq7xRgDJH3KBTIr7ZG5qx4aVLMvHEVtpcaBzNgRe7dCc77a15f9xpgrNqO2399eaWqDMieiCv0IP\/XzGHLTbm\/cDUikPD8irYSs4jA4VzOjIddZ88HY1F9D8076LSG49NYk3lz3ynyx4LTX70OXQIDAQAB",
    "action": {
        "default_popup": "html\/about.html"
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "removeHeaders",
                "enabled": true,
                "path": "rules\/removeHeaders.json"
            }
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.callshaper.com\/*",
                "*:\/\/*.callshaper.dev\/*",
                "*:\/\/*.callshaperdev.com\/*",
                "*:\/\/*.callshapertas.com\/*",
                "*:\/\/*.callshaperqa.com\/*"
            ],
            "all_frames": true,
            "js": [
                "js\/numberFinder.js"
            ],
            "css": [
                "css\/numberStyling.css"
            ]
        },
        {
            "matches": [
                "https:\/\/manage.callshaper.com\/agent\/*",
                "https:\/\/manage.callshaper.dev\/agent\/*",
                "https:\/\/manage.callshaperdev.com\/agent\/*",
                "https:\/\/local.callshaperdev.com:8443\/*"
            ],
            "js": [
                "js\/agentTracker.js"
            ]
        }
    ],
    "minimum_chrome_version": "96",
    "host_permissions": [
        ""
    ],
    "permissions": [
        "declarativeNetRequestWithHostAccess",
        "tabs",
        "storage",
        "notifications"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.callshaper.com\/*",
            "https:\/\/*.callshaper.dev\/*",
            "https:\/\/*.callshaperdev.com\/*"
        ]
    }
}