Post Office
Chrome email functions
Cos'è Post Office?
Post Office è un'estensione di Chrome sviluppata da https://it.nicksimmonds.com, e la sua funzione principale è "Chrome email functions".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Post Office
Scarica i file di estensione Post Office 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
Post Office is an extension that adds the option to bypass your default email provider. You can keep sending via Outlook, Mail, etc. just by clicking links, but when you right-click you're presented with the option to send via a webmail provider. You can select which providers are available on the options page. You can also toggle on Post Office's mail bypass by clicking the icon. While toggled, Post Office will send mail links to your web mail provide of choice (set on the options page) rather than your machine's default mail client. Clicking again will return control to whatever you were using before for mail. Supports: * Gmail * Yahoo! mail * Microsoft Live mail * Outlook Web Access (must provide the web access URL in options)
Informazioni di Base sull'Estensione
Nome | Post Office |
ID | bpckloinaeafhkniklgjhbjicjhbbecj |
URL Ufficiale | https://chromewebstore.google.com/detail/post-office/bpckloinaeafhkniklgjhbjicjhbbecj |
Descrizione | Chrome email functions |
Dimensione del File | 83.82 KB |
Conteggio Installazioni | 202 |
Versione Corrente | 1 |
Ultimo Aggiornamento | 2012-11-08 |
Data di Pubblicazione | 2012-11-08 |
Valutazione | 4.33/5 Totale 6 Valutazioni |
Sviluppatore | https://it.nicksimmonds.com |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://nicksimmonds.com |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Post Office", "version": "1", "manifest_version": 2, "options_page": "preferences.html", "description": "Chrome email functions", "browser_action": { "default_icon": "disicon.png", "default_title": "Post Office" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery-1.7.2.min.js", "mailscripts.js" ] } ], "background": { "scripts": [ "mail.js", "toggle.js" ] }, "permissions": [ "*:\/\/*\/*", "contextMenus" ], "icons": { "16": "minicon.png", "48": "midicon.png", "128": "bigicon.png" } } |