Jira Favorites

Add Jira issues to favorites and sync among your devices.

Jira Favorites क्या है?

Jira Favorites Git Cat द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add Jira issues to favorites and sync among your devices."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        After installing this extension, there will be a star button in your Jira item page (see screenshots).
Click the star button to favorite or unfavorite it. You can also use shortcut "Alt + Shift + f" to star/unstar.
See the favorites list by clicking the star icon from browser's extension list.                    

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

नाम Jira Favorites Jira Favorites
ID ichkpfkanonmdnheglakiapmjmjhpmme
आधिकारिक URL https://chromewebstore.google.com/detail/jira-favorites/ichkpfkanonmdnheglakiapmjmjhpmme
विवरण Add Jira issues to favorites and sync among your devices.
फ़ाइल का आकार 284 KB
स्थापना संख्या 164
वर्तमान संस्करण 0.0.8
अंतिम अपडेट 2024-02-26
प्रकाशन तिथि 2020-05-04
डेवलपर Git Cat
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/TechStark/jira-favorites-extension
सहायता पृष्ठ URL https://github.com/TechStark/jira-favorites-extension/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira Favorites",
    "version": "0.0.8",
    "manifest_version": 3,
    "description": "Add Jira issues to favorites and sync among your devices.",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "16": "icons\/icon-16.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png"
        }
    },
    "background": {
        "service_worker": "background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/browse\/*"
            ],
            "match_about_blank": true,
            "all_frames": true,
            "run_at": "document_idle",
            "js": [
                "content-script.bundle.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}