Pages Sharer on Social
This plugin allow to share a webpage on fb, twitter, share link on twitter, share selected text on twitter, share image on twitter
Cos'è Pages Sharer on Social?
Pages Sharer on Social è un'estensione di Chrome sviluppata da Abhishek Sharma, e la sua funzione principale è "This plugin allow to share a webpage on fb, twitter, share link on twitter, share selected text on twitter, share image on twitter".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Pages Sharer on Social
Scarica i file di estensione Pages Sharer on Social 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
From this you can able to share any link on twitter, share any image on facebook, share any page on facebook or twitter easily by right click on site or on any link or on any image.
Informazioni di Base sull'Estensione
Nome | Pages Sharer on Social |
ID | hfadffifenbmocmbalegbpbdmgkocmop |
URL Ufficiale | https://chromewebstore.google.com/detail/pages-sharer-on-social/hfadffifenbmocmbalegbpbdmgkocmop |
Descrizione | This plugin allow to share a webpage on fb, twitter, share link on twitter, share selected text on twitter, share image on twitter |
Dimensione del File | 35.42 KB |
Conteggio Installazioni | 12 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2017-01-29 |
Data di Pubblicazione | 2017-01-29 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Abhishek Sharma |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pages Sharer on Social", "description": "This plugin allow to share a webpage on fb, twitter, share link on twitter, share selected text on twitter, share image on twitter", "version": "1.0", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "contextMenus" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "style.css" ], "js": [ "jquery.js", "myscript.js" ] } ], "web_accessible_resources": [ "toolbar.html" ], "icons": { "16": "icon.png", "128": "icon.png", "48": "icon.png", "64": "icon.png" } } |