Noojee Click for Asterisk

Turns phone numbers in any web page into click-to-dial links.

Cos'è Noojee Click for Asterisk?

Noojee Click for Asterisk è un'estensione di Chrome sviluppata da tuba.terry, e la sua funzione principale è "Turns phone numbers in any web page into click-to-dial links.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Noojee Click for Asterisk

Scarica i file di estensione Noojee Click for Asterisk in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension connects your browser with an Asterisk-based phone system to enable click-to-call on phone numbers in webpages.

Originally developed by Noojee.com.au as an open-source Chrome extension but later abandoned, I've updated it to run in the latest versions of Chrome (As of Sep, 2013)

System requirements are available at:
http://noojee.com.au/store/software/noojee-click/

Source code is GPL, available at:
https://github.com/tubaterry/Noojee-Click-for-Asterisk                    

Informazioni di Base sull'Estensione

Nome Noojee Click for Asterisk Noojee Click for Asterisk
ID neaigllemckgddgdbiipcmnpioehkcom
URL Ufficiale https://chromewebstore.google.com/detail/noojee-click-for-asterisk/neaigllemckgddgdbiipcmnpioehkcom
Descrizione Turns phone numbers in any web page into click-to-dial links.
Dimensione del File 263 KB
Conteggio Installazioni 296
Versione Corrente 0.91.1
Ultimo Aggiornamento 2013-09-26
Data di Pubblicazione 2013-09-26
Valutazione 3.80/5 Totale 5 Valutazioni
Sviluppatore tuba.terry
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Noojee Click for Asterisk",
    "version": "0.91.1",
    "author": "Noojee.com.au, adapted by Chris Terry",
    "description": "Turns phone numbers in any web page into click-to-dial links.",
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/phone-48.png",
        "128": "img\/phone-128.png"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "js\/noojee\/namespace.js",
            "js\/noojee\/lib.js",
            "js\/noojee\/dialstatus.js",
            "js\/noojee\/job.js",
            "js\/noojee\/util.js",
            "js\/noojee\/prefs.js",
            "js\/noojee\/sequence.js",
            "js\/noojee\/prompts.js",
            "js\/noojee\/asterisk.js",
            "js\/noojee\/noojeeclick.js",
            "js\/noojee\/event.js",
            "js\/noojee\/phonepatterns.js",
            "js\/noojee\/notification.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/noojee\/namespace.js",
                "js\/noojee\/lib.js",
                "js\/noojee\/noojeeclick.js",
                "js\/noojee\/prefs.js",
                "js\/noojee\/util.js",
                "js\/noojee\/prompts.js",
                "js\/noojee\/render.js",
                "js\/noojee\/phonepatterns.js",
                "js\/noojee\/handlers.js",
                "js\/init.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*\/*",
        "contextMenus",
        "notifications"
    ],
    "web_accessible_resources": [
        "img\/call-phone.png"
    ]
}