PM

Post contextual reminders on web pages.

PM란 무엇입니까?

PM은(는) chris.parnin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Post contextual reminders on web pages."입니다.

확장 프로그램 스크린샷

screenshot

PM 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}