VLCTechHub Publisher Addon
Publish events in VLCTechHub directly from your browser
Qu'est-ce que VLCTechHub Publisher Addon ?
VLCTechHub Publisher Addon est une extension Chrome développée par https://vlctechhub.org, et sa fonction principale est "Publish events in VLCTechHub directly from your browser".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension VLCTechHub Publisher Addon
Téléchargez les fichiers d'extension VLCTechHub Publisher Addon au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | VLCTechHub Publisher Addon |
ID | jmphppchcbgfglglfbemgbjligclmcmc |
URL Officiel | https://chromewebstore.google.com/detail/vlctechhub-publisher-addo/jmphppchcbgfglglfbemgbjligclmcmc |
Description | Publish events in VLCTechHub directly from your browser |
Taille du Fichier | 81.82 KB |
Nombre d'Installations | 21 |
Version Actuelle | 3.4 |
Dernière Mise à Jour | 2019-02-09 |
Date de Publication | 2019-02-09 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | https://vlctechhub.org |
Type de Paiement | free |
Site Web de l'Extension | http://vlctechhub.org |
Langues Prises en Charge | 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" } ] } |