Clip Better
Use Clip Better to email link previews from anywhere on the web!
Cos'è Clip Better?
Clip Better è un'estensione di Chrome sviluppata da https://clipbetter.com, e la sua funzione principale è "Use Clip Better to email link previews from anywhere on the web!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Clip Better
Scarica i file di estensione Clip Better 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
Hate sending raw URLs to your friends? Us too! Want a way to quickly get back to stuff that matters to you? Wish there was a way to share web pages via email as effortlessly and powerfully as you can on social media? Stop emailing ugly URLs and start doing something better. Welcome to Clip Better. Clip Better will create a rich snippet that includes an image, title, summary, link, and more so that you can quickly share web content with friends and know that they will can review a rich preview of the content that you are sharing before they click on the link. Features: • Create clips directly from webpages you want to capture • Automatically generate preview with image, title, link, summary, and more • Edit title and summary directly in preview • Quickly add personalized comments or notes • Advanced edit allows you to change the main image and more • Send with Gmail with a single click • Or copy the clip to your clipboard and use it in your favorite email client, word processor, or more • Easily undo changes • More features coming in the next release Latest version 1.2 released 2/10/2014 • Fixes an issue where the Send with Gmail button would not work in non-English languages Stay in touch: Follow us on Twitter: https://twitter.com/ClipBetter Support: Have any questions or feedback? Please get in touch with our support team at [email protected]
Informazioni di Base sull'Estensione
Nome | Clip Better |
ID | gobkmjhllbkjeakbgmiodimehipofpmb |
URL Ufficiale | https://chromewebstore.google.com/detail/clip-better/gobkmjhllbkjeakbgmiodimehipofpmb |
Descrizione | Use Clip Better to email link previews from anywhere on the web! |
Dimensione del File | 72 KB |
Conteggio Installazioni | 1,283 |
Versione Corrente | 1.2.0 |
Ultimo Aggiornamento | 2014-02-11 |
Data di Pubblicazione | 2014-02-10 |
Valutazione | 4.44/5 Totale 34 Valutazioni |
Sviluppatore | https://clipbetter.com |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://info.clipbetter.com |
URL della Pagina di Aiuto | https://clipbetter.zendesk.com |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Clip Better", "manifest_version": 2, "version": "1.2.0", "description": "Use Clip Better to email link previews from anywhere on the web!", "icons": { "16": "icon.png", "48": "icon48.png", "128": "icon128rt.png" }, "browser_action": { "default_title": "Clip Better", "default_icon": "icon.png", "default_popup": "popup.html" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "gmail.js" ], "run_at": "document_end" } ], "permissions": [ "http:\/\/clipbetter.com\/", "http:\/\/fonts.googleapis.com\/", "clipboardWrite", "storage", "tabs" ] } |