VLCTechHub Publisher Addon
Publish events in VLCTechHub directly from your browser
VLCTechHub Publisher Addonคืออะไร?
VLCTechHub Publisher Addon เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://vlctechhub.org และคุณลักษณะหลักของมันคือ "Publish events in VLCTechHub directly from your browser"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย VLCTechHub Publisher Addon
ดาวน์โหลดไฟล์ส่วนขยาย 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" } ] } |