VLCTechHub Publisher Addon

Publish events in VLCTechHub directly from your browser

O que é VLCTechHub Publisher Addon?

VLCTechHub Publisher Addon é uma extensão do Chrome desenvolvida por https://vlctechhub.org, e sua principal característica é "Publish events in VLCTechHub directly from your browser".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão VLCTechHub Publisher Addon

Baixe arquivos de extensão VLCTechHub Publisher Addon no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome VLCTechHub Publisher Addon VLCTechHub Publisher Addon
ID jmphppchcbgfglglfbemgbjligclmcmc
URL Oficial https://chromewebstore.google.com/detail/vlctechhub-publisher-addo/jmphppchcbgfglglfbemgbjligclmcmc
Descrição Publish events in VLCTechHub directly from your browser
Tamanho do Arquivo 81.82 KB
Contagem de Instalações 21
Versão Atual 3.4
Última Atualização 2019-02-09
Data de Publicação 2019-02-09
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://vlctechhub.org
Tipo de Pagamento free
Site da Extensão http://vlctechhub.org
Idiomas Suportados 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"
        }
    ]
}