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" } ] } |