VLCTechHub Publisher Addon
Publish events in VLCTechHub directly from your browser
VLCTechHub Publisher Addon란 무엇입니까?
VLCTechHub Publisher Addon은(는) https://vlctechhub.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Publish events in VLCTechHub directly from your browser"입니다.
확장 프로그램 스크린샷
VLCTechHub Publisher Addon 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | VLCTechHub Publisher Addon |
ID | jmphppchcbgfglglfbemgbjligclmcmc |
공식 URL | https://chromewebstore.google.com/detail/vlctechhub-publisher-addo/jmphppchcbgfglglfbemgbjligclmcmc |
설명 | Publish events in VLCTechHub directly from your browser |
파일 크기 | 81.82 KB |
설치 횟수 | 21 |
현재 버전 | 3.4 |
최근 업데이트 | 2019-02-09 |
출시 날짜 | 2019-02-09 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | https://vlctechhub.org |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://vlctechhub.org |
지원되는 언어 | 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" } ] } |