VLCTechHub Publisher Addon

Publish events in VLCTechHub directly from your browser

VLCTechHub Publisher Addon là gì?

VLCTechHub Publisher Addon là một tiện ích mở rộng Chrome được phát triển bởi https://vlctechhub.org, và tính năng chính của nó là "Publish events in VLCTechHub directly from your browser".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng VLCTechHub Publisher Addon

Tải xuống các tệp mở rộng VLCTechHub Publisher Addon dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên VLCTechHub Publisher Addon VLCTechHub Publisher Addon
ID jmphppchcbgfglglfbemgbjligclmcmc
URL Chính Thức https://chromewebstore.google.com/detail/vlctechhub-publisher-addo/jmphppchcbgfglglfbemgbjligclmcmc
Mô tả Publish events in VLCTechHub directly from your browser
Kích Thước Tệp 81.82 KB
Số Lần Cài Đặt 21
Phiên Bản Hiện Tại 3.4
Cập Nhật Lần Cuối 2019-02-09
Ngày Phát Hành 2019-02-09
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://vlctechhub.org
Loại Thanh Toán free
Trang Web Mở Rộng http://vlctechhub.org
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}