Jira Favorites

Add Jira issues to favorites and sync among your devices.

ما هو Jira Favorites؟

Jira Favorites هو إضافة Chrome تم تطويرها بواسطة Git Cat، والميزة الرئيسية لها هي "Add Jira issues to favorites and sync among your devices.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Jira Favorites

قم بتنزيل ملفات الامتداد Jira Favorites بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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"
    ]
}