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文件
下载VLCTechHub Publisher Addon扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } ] } |