Ping

This extension is a starting point to create a real Chrome extension

Pingとは何ですか?

PingはPing Appによって開発されたChromeの拡張機能で、その主な機能は「This extension is a starting point to create a real Chrome extension」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Ping拡張機能のCRXファイルをダウンロード

Ping拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Ping is an outcome of a long standing frustration of mine - how do I assign tasks to me team and co-workers efficiently and productively? How do I stay on top of things I need to do and things that I am relying on others to do?

There are loads of task management apps, but they are all far too complex and don't solve the problem of managing asks that I have of others. I designed Ping to be super simple - just assign tasks to yourself or to others. Ping automatically emails the tasks to the assignees and lets you track completion and 'ping' them if they haven't finished what you requested. 

Use them within your team or at home with your spouse/kids. It is especially a savior in the remote work situation we find ourselves in today.

Ping requests for your Gmail permission to send and receive emails on your behalf. This is required so that Ping can automatically email tasks to your colleagues and also automatically add tasks to your list if someone else assigns a task to you. This also ensures that all your information is shared only through your own Gmail account. Ping does not have any server and no information of yours is shared with Ping or any other third party. Ping's code works entirely within your Chrome browser. This is designed to protect your privacy, and to make your task management efficient.

If you ever want to revoke access, you can simply delete the Ping extension from your Chrome browser. As an additional measure, you can also revoke email access by visiting your Google account permissions page at https://myaccount.google.com/u/0/permissions.

Ping is FREE and all current functionality will remain FREE forever. This is more of a passion project than an enterprise. Do give it a try and see if it helps you improve your daily workflows and reduce time on painful task management. Would love to hear any and all feedback from you, do write to us at [email protected].                    

拡張機能の基本情報

名前 Ping Ping
ID nhnflpnffnldknkelhacljhbjldmaoji
公式URL https://chrome.google.com/webstore/detail/ping/nhnflpnffnldknkelhacljhbjldmaoji
説明 This extension is a starting point to create a real Chrome extension
ファイルサイズ 1.01 MB
インストール数 18
現在のバージョン 0.0.1
最終更新日 2021-01-20
公開日 2021-01-20
開発者 Ping App
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ping",
    "description": "This extension is a starting point to create a real Chrome extension",
    "version": "0.0.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Open the popup"
    },
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "permissions": [
        "identity",
        "contextMenus",
        "identity",
        "cookies",
        "storage"
    ],
    "oauth2": {
        "client_id": "141050415697-qkcnt88bq38368k3l9bpprr6tvds9c2r.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/apis.google.com",
            "https:\/\/accounts.google.com\/o\/oauth2\/auth",
            "https:\/\/oauth2.googleapis.com\/token",
            "https:\/\/www.googleapis.com\/oauth2\/v1\/certs"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'"
}