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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } ] } |