VLCTechHub Publisher Addon

Publish events in VLCTechHub directly from your browser

¿Qué es VLCTechHub Publisher Addon?

VLCTechHub Publisher Addon es una extensión de Chrome desarrollada por https://vlctechhub.org, y su función principal es "Publish events in VLCTechHub directly from your browser".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión VLCTechHub Publisher Addon

Descarga archivos de extensión VLCTechHub Publisher Addon en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre VLCTechHub Publisher Addon VLCTechHub Publisher Addon
ID jmphppchcbgfglglfbemgbjligclmcmc
URL Oficial https://chromewebstore.google.com/detail/vlctechhub-publisher-addo/jmphppchcbgfglglfbemgbjligclmcmc
Descripción Publish events in VLCTechHub directly from your browser
Tamaño del Archivo 81.82 KB
Cantidad de Instalaciones 21
Versión Actual 3.4
Última Actualización 2019-02-09
Fecha de Publicación 2019-02-09
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador https://vlctechhub.org
Tipo de Pago free
Sitio Web de la Extensión http://vlctechhub.org
Idiomas Soportados 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"
        }
    ]
}