ONTRAPORT Power User Extension
This extension provides unofficial extra features for power users of ONTRAPORT.
Cos'è ONTRAPORT Power User Extension?
ONTRAPORT Power User Extension è un'estensione di Chrome sviluppata da ONTRAPORT Labs, e la sua funzione principale è "This extension provides unofficial extra features for power users of ONTRAPORT.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ONTRAPORT Power User Extension
Scarica i file di estensione ONTRAPORT Power User Extension 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
- Keep the Top Level Navigation onscreen at all times. - Keep the current Release and Account Number onscreen at all times. - Setup Per-Account customizations such as color theming and custom logo.
Informazioni di Base sull'Estensione
Nome | ONTRAPORT Power User Extension |
ID | ddccabpjgecnegndgkghilemjpbocjpd |
URL Ufficiale | https://chromewebstore.google.com/detail/ontraport-power-user-exte/ddccabpjgecnegndgkghilemjpbocjpd |
Descrizione | This extension provides unofficial extra features for power users of ONTRAPORT. |
Dimensione del File | 16.03 MB |
Conteggio Installazioni | 346 |
Versione Corrente | 1.109 |
Ultimo Aggiornamento | 2020-02-20 |
Data di Pubblicazione | 2020-02-20 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | ONTRAPORT Labs |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://ontraport.com/legal |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ONTRAPORT Power User Extension", "description": "This extension provides unofficial extra features for power users of ONTRAPORT.", "version": "1.109", "browser_action": { "default_title": "Click to edit options", "default_icon": "icon.png", "default_popup": "popup\/popup.html" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.ontraport.com\/*" ], "css": [ "content_script\/styles.css" ], "js": [ "content_script\/jquery.js", "content_script\/jquery.initialize.min.js", "content_script\/script.js" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "tabs", "storage" ] } |