VLCTechHub Publisher Addon
Publish events in VLCTechHub directly from your browser
Co to jest VLCTechHub Publisher Addon?
VLCTechHub Publisher Addon to rozszerzenie Chrome opracowane przez https://vlctechhub.org, a jego główną funkcją jest „Publish events in VLCTechHub directly from your browser”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia VLCTechHub Publisher Addon
Pobierz pliki rozszerzeń VLCTechHub Publisher Addon w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | VLCTechHub Publisher Addon |
ID | jmphppchcbgfglglfbemgbjligclmcmc |
Oficjalny URL | https://chromewebstore.google.com/detail/vlctechhub-publisher-addo/jmphppchcbgfglglfbemgbjligclmcmc |
Opis | Publish events in VLCTechHub directly from your browser |
Rozmiar pliku | 81.82 KB |
Liczba instalacji | 21 |
Aktualna Wersja | 3.4 |
Ostatnia Aktualizacja | 2019-02-09 |
Data Publikacji | 2019-02-09 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | https://vlctechhub.org |
Typ Płatności | free |
Strona Rozszerzenia | http://vlctechhub.org |
Obsługiwane Języki | 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" } ] } |