Meetup Batch-Event-Set Tool v2

This extension allows you to schedule multiple Meetup.com events at once

Meetup Batch-Event-Set Tool v2คืออะไร?

Meetup Batch-Event-Set Tool v2 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sshetty2.com และคุณลักษณะหลักของมันคือ "This extension allows you to schedule multiple Meetup.com events at once"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Meetup Batch-Event-Set Tool v2

ดาวน์โหลดไฟล์ส่วนขยาย Meetup Batch-Event-Set Tool v2 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension is a tool meant to extend the functionality of Meetup.com by allowing the user to specify a date range and a group name, and subsequently,  schedule multiple events at one time to their Google Calendar. The tool will also attempt to RSVP for those events through Meetup.com

In order to use the extension you will be asked to sign in to Meetup.com and authorize through Google and grant limited permissions to Meetup Batch Event Set Tool. 

For the best results, please allow Meetup Batch Event Set tool to choose the group name for you by navigating to any page associated with the group whose events you are trying to schedule. This will ensure that the correct query is made for the event data when the tool is trying to schedule your events.

Developer Documentation: https://github.com/Sshetty2/meetup-batch-event-set

WARNING: YOU MUST SIGN IN TO GOOGLE CHROME IN ORDER TO USE THIS APP

DISCLAIMER: THIS TOOL UNOFFICIALLY EXTENDS THE FUNCTIONALITY OF MEETUP.COM

** PRIVACY POLICY ** 
https://sshetty2.github.io/meetup-batch-event-set/privacy_policy                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Meetup Batch-Event-Set Tool v2 Meetup Batch-Event-Set Tool v2
ID cabfodbfjmgloaallchcnnkgcfpnobem
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/meetup-batch-event-set-to/cabfodbfjmgloaallchcnnkgcfpnobem
คำอธิบาย This extension allows you to schedule multiple Meetup.com events at once
ขนาดไฟล์ 1.49 MB
จำนวนการติดตั้ง 28
เวอร์ชันปัจจุบัน 7.3.0
อัปเดตครั้งล่าสุด 2019-10-07
วันที่เผยแพร่ 2019-10-06
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://sshetty2.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://sshetty2.github.io/meetup-batch-event-set/privacy_policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Meetup Batch-Event-Set Tool v2",
    "short_name": "MBEST",
    "description": "This extension allows you to schedule multiple Meetup.com events at once",
    "version": "7.3.0",
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Open the popup"
    },
    "icons": {
        "16": "meetup-icon-white-black.png",
        "48": "meetup-logo-small.png",
        "128": "meetup-logo-small.png"
    },
    "background": {
        "scripts": [
            "bgscript-constants.js",
            "bgscript-utils.js",
            "bgscript-xhrs.js",
            "bgscript-main.js",
            "bgscript-relays.js"
        ]
    },
    "permissions": [
        "webNavigation",
        "storage",
        "identity",
        "tabs",
        "activeTab",
        "http:\/\/*.meetup.com\/*"
    ],
    "content_scripts": [
        {
            "css": [
                "\/static\/css\/app.css"
            ],
            "js": [
                "content.js",
                "\/static\/js\/content.js",
                "\/static\/js\/app.js"
            ],
            "matches": [
                "https:\/\/*.meetup.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        "\/oauth2\/*"
    ],
    "oauth2": {
        "client_id": "466748401928-m88okvel4gdsc9rjo9qlo8em25ihs65s.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/calendar.events"
        ]
    }
}