Codenames Assistant
Codenames Assistant
什麼是Codenames Assistant?
Codenames Assistant是由lukesrw開發的Chrome擴展程式,該擴展的主要功能是“Codenames Assistant”。
擴展截圖
下載Codenames Assistant擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | caeoldohbmnkpkndeephoanbkhjccgbm |
| 官方網址 | 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"
} | |