My work Board

Build your own Work Board, Kanban board, Business Model Board and manage your cards

My work Boardคืออะไร?

My work Board เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DPaC และคุณลักษณะหลักของมันคือ "Build your own Work Board, Kanban board, Business Model Board and manage your cards"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย My work Board

ดาวน์โหลดไฟล์ส่วนขยาย My work Board ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension is totally free and use a tab to manage your tasks. You can use a KANBAN board or many other types of board that you can customize.

With this free tool, you can create several projects and  pre-defined boards like:
		○ Kanban
		○ To Do List
		○ Eisenhower matrice
		○ SWOT matrice
		○ Business Model Canvas
		○ Value Proposition Canvas
                ○   ...
	 
-> But you can also create and customize your own Board or modify all the existing boards

The purpose of this tool is to clean your workstation of all post-it by putting then in a board. This tool are going to help you clarify your thinking

Feature highlights  :

 - Personalize Columns and Rows
	- Add or delete Columns and Rows 
	- Personalize the label of each Columns and Rows
	- Visualize the number of Card in each window

 - Personalize card types
	- New cards can be added easily. You can create 5 different card types.
	- Drag & Drop interface to move cards.
	- Add an alarm on the cards to remind you the work you have to do
	- Cards synchronisation on different computers, for this you must be logged in with a Google account 
	- You can use keyboard shortcuts for the first four card types (Alt+1, Alt+2, Alt+3, Alt+4)

- Setup
	- You can setup 5 card types
	- You can decide the color of each card type
	- You can configure the font of each card type

You have questions, comments or suggestions for new features, please email us at [email protected]                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ My work Board My work Board
ID hmaclocmioclbbcgnoiblgogphobpkaf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/my-work-board/hmaclocmioclbbcgnoiblgogphobpkaf
คำอธิบาย Build your own Work Board, Kanban board, Business Model Board and manage your cards
ขนาดไฟล์ 264 KB
จำนวนการติดตั้ง 1,370
เวอร์ชันปัจจุบัน 1.2.3
อัปเดตครั้งล่าสุด 2023-02-18
วันที่เผยแพร่ 2020-05-18
คะแนน 3.67/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา DPaC
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "My work Board",
    "short_name": "My Board",
    "version": "1.2.3",
    "author": "DPa Consulting, Pascal Dehaies",
    "description": "Build your own Work Board, Kanban board, Business Model Board and manage your cards",
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "content_security_policy": {
        "object-src": "none",
        "default-src": "js\/*",
        "style-src": "css\/*",
        "script-src": "self sha256-KEpeUkzcr2xsv1g2gzv56uRL77VLKU74xdqaqe23l60="
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/google.com\/*\/myWorkBoard.html\/*"
            ],
            "css": [
                "css\/item.css",
                "css\/menu.css",
                "css\/modal.css",
                "css\/status.css",
                "css\/popup.css"
            ],
            "js": [
                "js\/settings.js",
                "js\/status.js",
                "js\/task.js",
                "js\/tools.js",
                "js\/alarm.js"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "images\/myWorkBoard16.png",
            "48": "images\/myWorkBoard48.png",
            "128": "images\/myWorkBoard128.png"
        },
        "default_title": "my work board"
    },
    "icons": {
        "16": "images\/myWorkBoard16.png",
        "48": "images\/myWorkBoard48.png",
        "128": "images\/myWorkBoard128.png"
    },
    "commands": {
        "type1_key": {
            "suggested_key": {
                "default": "Alt+1"
            },
            "description": "Add type 1"
        },
        "type2_key": {
            "suggested_key": {
                "default": "Alt+2"
            },
            "description": "Add type 2"
        },
        "type3_key": {
            "suggested_key": {
                "default": "Alt+3"
            },
            "description": "Add type 3"
        },
        "type4_key": {
            "suggested_key": {
                "default": "Alt+4"
            },
            "description": "Add type 4"
        }
    }
}