VLCTechHub Publisher Addon
Publish events in VLCTechHub directly from your browser
Vad är VLCTechHub Publisher Addon?
VLCTechHub Publisher Addon är en Chrome-tillägg utvecklad av https://vlctechhub.org, och dess huvudfunktion är "Publish events in VLCTechHub directly from your browser".
Tilläggsskärmbilder
Ladda ner VLCTechHub Publisher Addon-förlängningens CRX-fil
Ladda ner VLCTechHub Publisher Addon-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
                        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.                     Grundläggande Information om Tillägg
| Namn |   |  
| ID | jmphppchcbgfglglfbemgbjligclmcmc | 
| Officiell webbadress | https://chromewebstore.google.com/detail/vlctechhub-publisher-addo/jmphppchcbgfglglfbemgbjligclmcmc | 
| Beskrivning | Publish events in VLCTechHub directly from your browser | 
| Filstorlek | 81.82 KB | 
| Antal Installationer | 21 | 
| Aktuell Version | 3.4 | 
| Senast Uppdaterad | 2019-02-09 | 
| Publiceringsdatum | 2019-02-09 | 
| Betyg | 5.00/5 Totalt 2 Betyg | 
| Utvecklare | https://vlctechhub.org | 
| Betalningssätt | free | 
| Tilläggswebbplats | http://vlctechhub.org | 
| Stödda Språk | 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"
        }
    ]
}  |  |