VLCTechHub Publisher Addon
Publish events in VLCTechHub directly from your browser
Wat is VLCTechHub Publisher Addon?
VLCTechHub Publisher Addon is een Chrome-extensie ontwikkeld door https://vlctechhub.org, en de belangrijkste functie is "Publish events in VLCTechHub directly from your browser".
Extensie Screenshots
Download het CRX-bestand van de extensie VLCTechHub Publisher Addon
Download VLCTechHub Publisher Addon-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | jmphppchcbgfglglfbemgbjligclmcmc |
| Officiële URL | https://chromewebstore.google.com/detail/vlctechhub-publisher-addo/jmphppchcbgfglglfbemgbjligclmcmc |
| Beschrijving | Publish events in VLCTechHub directly from your browser |
| Bestandsgrootte | 81.82 KB |
| Aantal Installaties | 21 |
| Huidige Versie | 3.4 |
| Laatst Bijgewerkt | 2019-02-09 |
| Publicatiedatum | 2019-02-09 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | https://vlctechhub.org |
| Betalingswijze | free |
| Extensiewebsite | http://vlctechhub.org |
| Ondersteunde Talen | 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"
}
]
} | |