VLCTechHub Publisher Addon

Publish events in VLCTechHub directly from your browser

What is VLCTechHub Publisher Addon?

VLCTechHub Publisher Addon is a Chrome extension developed by https://vlctechhub.org, and its main feature is "Publish events in VLCTechHub directly from your browser".

Extension Screenshots

screenshot
screenshot

Download VLCTechHub Publisher Addon Extension CRX File

Download VLCTechHub Publisher Addon extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name VLCTechHub Publisher Addon VLCTechHub Publisher Addon
ID jmphppchcbgfglglfbemgbjligclmcmc
Official URL https://chromewebstore.google.com/detail/vlctechhub-publisher-addo/jmphppchcbgfglglfbemgbjligclmcmc
Description Publish events in VLCTechHub directly from your browser
File Size 81.82 KB
Installation Count 21
Current Version 3.4
Last Updated 2019-02-09
Publish Date 2019-02-09
Rating 5.00/5 Total 2 Ratings
Developer https://vlctechhub.org
Payment Type free
Extension Website http://vlctechhub.org
Supported Languages 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"
        }
    ]
}