PM

Post contextual reminders on web pages.

PM क्या है?

PM chris.parnin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Post contextual reminders on web pages."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में PM एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}