Jira Work Management

Create tasks easily with Jira Work Management

Jira Work Management란 무엇입니까?

Jira Work Management은(는) https://atlassian.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create tasks easily with Jira Work Management"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Jira Work Management 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Move projects forward without switching tabs: the Jira Work Management Chrome Extension lets you create action items on any webpage. 

HOW IT WORKS
Create a task from anywhere
Assign it to the right teammate and project
Add a helpful description
Drop in an attachment, like a quick screenshot or a link
Open your project for the full picture

Pro tip: Grab the corner of your Jira Work Management window to move it around your screen.

From customizable views to powerful automations, Jira Work Management is your business team's new favorite work tool.                    

확장 프로그램 기본 정보

이름 Jira Work Management Jira Work Management
ID eilakfdlgblfhmgelnodnalfhbeagelb
공식 URL https://chromewebstore.google.com/detail/jira-work-management/eilakfdlgblfhmgelnodnalfhbeagelb
설명 Create tasks easily with Jira Work Management
파일 크기 10.67 MB
설치 횟수 39,157
현재 버전 1.1.51
최근 업데이트 2024-01-31
출시 날짜 2022-01-13
평점 2.70/5 총 30 개의 평점
개발자 https://atlassian.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.atlassian.com/software/jira/work-management
도움말 페이지 URL https://support.atlassian.com/jira-work-management/
개인정보 보호 정책 페이지 URL https://www.atlassian.com/legal/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jira Work Management",
    "description": "Create tasks easily with Jira Work Management",
    "manifest_version": 2,
    "version": "1.1.51",
    "icons": {
        "16": "production-Logo.png",
        "48": "production-Logo.png",
        "128": "production-Logo.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "production-Logo.png",
            "48": "production-Logo.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.png",
        "iframe.html",
        "atlaskit.module.css",
        "\/chunks\/*",
        "*.js",
        "*.js.map"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+J",
                "mac": "MacCtrl+Shift+J"
            }
        }
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "cookies",
        "storage",
        "https:\/\/*\/"
    ]
}