SkySwitch C2C

A Chrome Extension that will allow you to implement click to call (also called Click to Dial) with the NetSapiens softswitch.…

Τι είναι το SkySwitch C2C;

Το SkySwitch C2C είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον SVM Tech, και η κύρια λειτουργία του είναι "A Chrome Extension that will allow you to implement click to call (also called Click to Dial) with the NetSapiens softswitch.…".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης SkySwitch C2C

Λήψη αρχείων επέκτασης SkySwitch C2C σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        A Chrome Extension that will allow you to implement click to call (also called Click to Dial) with the NetSapiens softswitch.

Version 1.4:
-  Works with websites that use frames
-  Detects numbers that use "." instead of "-"

Version 1.5:
-  If number string starts with "+" and next number is not a "1" then add "011" to the dialstring

Version 1.6
1.  Add field to options page with label:  International Prefix
2.   Change Country Code field to a dropdown list with Countries.  Auto-populate country code for the country chosen.

- If number string starts with "+" and next number is not equal to [Country Code] then add [International Prefix] to the dialstring.   
- If number string starts with "+" and next number is equal to [Country Code] then just strip the "+"

Example 1:  
Country Code is 1 and International Prefix is 011
+6328100976 will become 0116328100976

Example 2:
Country Code is 63 and International Prefix is 00
+6328100976 will become 6328100976

Example 3:   
Country Code is 1 and International Prefix is 011
+17477778100 will become 17477778100

Example 4:
Country Code is 63 and International Prefix is 00
+17477778100 will become 0017477778100

Version 1.8
Fixed incompatibilities with jquery                    

Βασικές Πληροφορίες Επέκτασης

Όνομα SkySwitch C2C SkySwitch C2C
ID jdggnicdcnlkeidmliiipbnnebjkccoa
Επίσημο URL https://chrome.google.com/webstore/detail/skyswitch-c2c/jdggnicdcnlkeidmliiipbnnebjkccoa
Περιγραφή A Chrome Extension that will allow you to implement click to call (also called Click to Dial) with the NetSapiens softswitch.…
Μέγεθος Αρχείου 77.28 KB
Αριθμός Εγκαταστάσεων 55
Τρέχουσα Έκδοση 1.8
Τελευταία Ενημέρωση 2016-05-23
Ημερομηνία Δημοσίευσης 2016-05-23
Προγραμματιστής SVM Tech
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://www.skyswitch.com/solutions-netsapiens-service-providers/
Διεύθυνση URL της Σελίδας Βοήθειας http://www.skyswitch.com/support/
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SkySwitch C2C",
    "version": "1.8",
    "description": "",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "c2c.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab",
        "tabs",
        "storage"
    ],
    "manifest_version": 2,
    "web_accessible_resources": [
        "pencil-15.png"
    ]
}