PM

Post contextual reminders on web pages.

PMとは何ですか?

PMはchris.parninによって開発されたChromeの拡張機能で、その主な機能は「Post contextual reminders on web pages.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Prospective memory helps us remember to perform an action in the future. We often use physical locations and cues, to remember daily activities like taking pills, or walk the dog. In digital spaces, there is often no equivalent device.

PM is a chrome extension that allows reminders to be contextually placed in a browser location. You could use a reminder to send a message to someone in gmail, make notes on a web app you are developing, github project page, or leave "guilty" notes in places we go when not working (reddit, hacker news, etc).                    

拡張機能の基本情報

名前 PM PM
ID cgcfflfodgfcjgncckhjcmbibfebgfdo
公式URL https://chromewebstore.google.com/detail/pm/cgcfflfodgfcjgncckhjcmbibfebgfdo
説明 Post contextual reminders on web pages.
ファイルサイズ 473 KB
インストール数 33
現在のバージョン 1.0.4
最終更新日 2013-09-07
公開日 2013-09-07
評価 5.00/5 合計 2 レビュー
開発者 chris.parnin
支払い方法 free
拡張機能のウェブサイト https://github.com/chrisparnin/pm
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PM",
    "version": "1.0.4",
    "manifest_version": 2,
    "description": "Post contextual reminders on web pages.",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "PM.png",
        "default_popup": "browser_action.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Ctrl+M",
                "windows": "Ctrl+Shift+M"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.10.1.min.js",
                "jquery.jeditable.mini.js",
                "rtm\/md5.js",
                "rtm\/rtm.js",
                "rtm\/chromeConnect.js",
                "sandbox.js"
            ]
        }
    ],
    "permissions": [
        "chrome:\/\/favicon\/",
        "tabs",
        "",
        "storage"
    ],
    "web_accessible_resources": [
        "css\/sticky.css",
        "css\/font-awesome.css",
        "font\/fontawesome-webfont.eot",
        "font\/fontawesome-webfont.svg",
        "font\/fontawesome-webfont.ttf",
        "font\/fontawesome-webfont.woff"
    ]
}