Meetup Tools

Enhancments for meetup.com

什麼是Meetup Tools?

Meetup Tools是由guya.net開發的Chrome擴展程式,該擴展的主要功能是“Enhancments for meetup.com”。

擴展截圖

screenshot

下載Meetup Tools擴展crx文件

下載Meetup Tools擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Meetup Tools is a small extension that is meant to enhance your meetup.com experience, and mainly does 3 things:
1. It shows you your place in the queue while on the waiting list.
2. It shows you your status for every meetup.
3. It takes you to meetup.com with one click.

Meetup.com Waitlists are almost always first come first serve.
When you are on the waitlist, Meetup.com doesn't tell what is your position in the queue.
This extension will tell you where you are in the queue so you'll be able to better estimate your chances of getting in.
Browse any meetup and it'll show you your current status.
If you are not in the meetup.com website, clicking the icon will take you there.

:)                    

擴展基本資訊

名稱 Meetup Tools Meetup Tools
ID okfdhdfbdobnclkegpfpepihhbbmapcj
官方網址 https://chrome.google.com/webstore/detail/meetup-tools/okfdhdfbdobnclkegpfpepihhbbmapcj
簡介 Enhancments for meetup.com
檔案大小 60.96 KB
安裝次數 200
目前版本 1.0.2
更新時間 2018-04-15
上架時間 2018-04-15
評分 3.00/5 共 5 次評分
開發者 guya.net
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meetup Tools",
    "version": "1.0.2",
    "description": "Enhancments for meetup.com",
    "background": {
        "scripts": [
            "meetup.js"
        ]
    },
    "permissions": [
        "*:\/\/*.meetup.com\/*",
        "webNavigation",
        "tabs",
        "notifications"
    ],
    "browser_action": {
        "default_icon": "logo_19.png"
    },
    "web_accessible_resources": [
        "logo_48.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.meetup.com\/*"
            ],
            "js": [
                "jquery-1.10.2.min.js",
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "icons": {
        "48": "logo_48.png",
        "128": "logo_128.png"
    },
    "manifest_version": 2
}