Jira Change Notifier

Adds a notifcation to the page when a Jira issue you are viewing has been altered

Jira Change Notifier क्या है?

Jira Change Notifier fooo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a notifcation to the page when a Jira issue you are viewing has been altered"।

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

screenshot

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

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

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

                        Checks in the background for changes to a Jira issue, and displays a notification when a change is detected or if you have been logged out.

Works when viewing an issue and in the backlog and active sprints list views.

After installing you will need to configure the domain for your jira instance in the extension settings otherwise the extension wont work. Because jira doesn't have a specific domain name the extension needs permission to access to all domains. The extension will only start on domains that have been entered in the settings.

Note: Doesn't currently check issues that are open in a side panel (eg when browsing the backlog with an issue open in the right pane).                    

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

नाम Jira Change Notifier Jira Change Notifier
ID dbhgehojincjjlajpmdjihmldkmboanm
आधिकारिक URL https://chromewebstore.google.com/detail/jira-change-notifier/dbhgehojincjjlajpmdjihmldkmboanm
विवरण Adds a notifcation to the page when a Jira issue you are viewing has been altered
फ़ाइल का आकार 33.74 KB
स्थापना संख्या 14
वर्तमान संस्करण 2.2.1
अंतिम अपडेट 2019-08-17
प्रकाशन तिथि 2019-08-11
डेवलपर fooo
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jira Change Notifier",
    "version": "2.2.1",
    "description": "Adds a notifcation to the page when a Jira issue you are viewing has been altered",
    "author": "[email protected]",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "browser_style": true
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/browse\/*"
            ],
            "js": [
                "jira-issue-change-notifier.js"
            ],
            "css": [
                "jira-change-notifier.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/secure\/RapidBoard*"
            ],
            "js": [
                "jira-board-change-notifier.js"
            ],
            "css": [
                "jira-change-notifier.css"
            ]
        }
    ]
}