Stack notifications

Tool to get Chrome notifications for Stack Exchange.

Stack notifications क्या है?

Stack notifications fralec द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tool to get Chrome notifications for Stack Exchange."।

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

screenshot
screenshot

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

crx प्रारूप में Stack notifications एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        It's a simple Chrome extension to show you your Stack Exchange notification as Chrome notification.

When you get something in one of the Stack Exchange sites, a notification will be clickable on your screen, you can click it and it open a new tab with the content. Enjoy :)




Setup :
1. Install the extension, then a Chrome popup will pop and you can log in with your Stack Exchange account.
2. Go to a Stack Exchange get some notifications ;)



Information about permissions :
 - storage: to store the token.
 - notifications: to show you notifications
 - contextMenus: to add "report a bug" menu
 - identity: for the oAuth2 Stack Exchange API
 - https://api.stackexchange.com/* to log you in
 - http://cdn.sstatic.net/* to show you picture in the notification

Report an issue:
https://github.com/fralec/Stack-notifications/issues/new                    

एक्सटेंशन की मूल जानकारी

नाम Stack notifications Stack notifications
ID cgamemjjkiapnidkadephhkneocmcino
आधिकारिक URL https://chromewebstore.google.com/detail/stack-notifications/cgamemjjkiapnidkadephhkneocmcino
विवरण Tool to get Chrome notifications for Stack Exchange.
फ़ाइल का आकार 60.81 KB
स्थापना संख्या 10
वर्तमान संस्करण 0.1.3
अंतिम अपडेट 2016-10-01
प्रकाशन तिथि 2016-10-01
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर fralec
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://fralec.github.io/Stack-notifications
सहायता पृष्ठ URL https://github.com/fralec/Stack-notifications/issues/new
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stack notifications",
    "version": "0.1.3",
    "description": "Tool to get Chrome notifications for Stack Exchange.",
    "author": "Fralec",
    "homepage_url": "https:\/\/fralec.github.io\/Stack-notifications",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "storage",
        "notifications",
        "contextMenus",
        "identity",
        "https:\/\/api.stackexchange.com\/*",
        "http:\/\/cdn.sstatic.net\/*"
    ],
    "browser_action": {
        "default_icon": "icons\/se128.png",
        "default_title": "Stack notifications",
        "default_popup": "popup.html"
    },
    "oauth2": {
        "client_id": "7951",
        "scopes": [
            "no_expiry",
            "read_inbox"
        ]
    },
    "icons": {
        "16": "icons\/se16.png",
        "32": "icons\/se32.png",
        "128": "icons\/se128.png"
    },
    "offline_enabled": false
}