Codenames Assistant

Codenames Assistant

Codenames Assistantคืออะไร?

Codenames Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lukesrw และคุณลักษณะหลักของมันคือ "Codenames Assistant"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Codenames Assistant

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

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

                        Features:
- Notes Sidebar
  Codenames Assistant adds a notepad in the red team's sidebar.
        -   Make notes without using an external tool like notepad
        -   Button to update the notes with a list of cards (grouped by team)
        -   Button to automatically list word combinations, if there's a clue

- Clue & Card Buttons
  Codenames Assistant adds two buttons to each card, as well as when a clue has been given:
        -   Merriam Webster (MW) Button  
            Opens a new tab to the Merriam Webster definition of the given clue/card.

        -   Wikipedia (W) Button  
            Opens a new tab to the Wikipedia page of the given clue/card.

- Clue Notifications
  Codenames Assistant sends a browser notification when a new clue has been given.
  You don't need to keep checking the Codenames tab to see when there's a clue.                    

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

ชื่อ Codenames Assistant Codenames Assistant
ID caeoldohbmnkpkndeephoanbkhjccgbm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/codenames-assistant/caeoldohbmnkpkndeephoanbkhjccgbm
คำอธิบาย Codenames Assistant
ขนาดไฟล์ 23.11 KB
จำนวนการติดตั้ง 939
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2020-12-30
วันที่เผยแพร่ 2020-12-28
คะแนน 1.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา lukesrw
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/lukesrw/codenames-assistant
URL หน้าช่วยเหลือ https://github.com/lukesrw/codenames-assistant
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "codenames-assistant@lukesrw"
        }
    },
    "content_scripts": [
        {
            "js": [
                "js\/script.js"
            ],
            "matches": [
                "https:\/\/codenames.game\/room\/*"
            ]
        }
    ],
    "description": "Codenames Assistant",
    "developer": {
        "name": "Luke Wilson",
        "url": "https:\/\/github.com\/lukesrw\/codenames-assistant\/"
    },
    "icons": {
        "16": "img\/logo-16.png",
        "32": "img\/logo-32.png",
        "48": "img\/logo-48.png",
        "64": "img\/logo-64.png",
        "96": "img\/logo-96.png",
        "128": "img\/logo-128.png"
    },
    "manifest_version": 2,
    "name": "Codenames Assistant",
    "permissions": [
        "notifications"
    ],
    "version": "1.2"
}