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.                     擴展基本資訊
| 名稱 |   |  
| ID | jmphppchcbgfglglfbemgbjligclmcmc | 
| 官方網址 | 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"
        }
    ]
}  |  |