VLCTechHub Publisher Addon
Publish events in VLCTechHub directly from your browser
Cos'è VLCTechHub Publisher Addon?
VLCTechHub Publisher Addon è un'estensione di Chrome sviluppata da https://vlctechhub.org, e la sua funzione principale è "Publish events in VLCTechHub directly from your browser".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione VLCTechHub Publisher Addon
Scarica i file di estensione VLCTechHub Publisher Addon 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
VLCTechHub Chrome extension to publish events in VLCTechHub with details read from the site you are visiting. Sites supported: - Event detail page from www.meetup.com - Event detail page from www.eventbrite.es (old style) - Front page of valenciarb.org Events must have a future date and be held in Valencia region.
Informazioni di Base sull'Estensione
Nome | VLCTechHub Publisher Addon |
ID | jmphppchcbgfglglfbemgbjligclmcmc |
URL Ufficiale | https://chromewebstore.google.com/detail/vlctechhub-publisher-addo/jmphppchcbgfglglfbemgbjligclmcmc |
Descrizione | Publish events in VLCTechHub directly from your browser |
Dimensione del File | 81.82 KB |
Conteggio Installazioni | 21 |
Versione Corrente | 3.4 |
Ultimo Aggiornamento | 2019-02-09 |
Data di Pubblicazione | 2019-02-09 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://vlctechhub.org |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://vlctechhub.org |
Lingue Supportate | es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "VLCTechHub Publisher Addon", "description": "Publish events in VLCTechHub directly from your browser", "version": "3.4", "background": { "scripts": [ "js\/background.js" ] }, "page_action": { "default_icon": "img\/icon.png", "default_popup": "popup.html", "default_title": "Publicar en VLCTechHub" }, "permissions": [ "activeTab", "http:\/\/vlctechhub-api.herokuapp.com\/" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.meetup.com\/*", "http:\/\/valenciarb.org\/", "https:\/\/www.eventbrite.com\/e\/*", "https:\/\/www.eventbrite.es\/e\/*" ], "js": [ "js\/scrapers\/meetupscraper.js", "js\/scrapers\/eventbritescraper.js", "js\/scrapers\/valenciarbscraper.js", "js\/content.js", "js\/dommatcher.js" ], "run_at": "document_end" } ] } |