Word Search Puzzles
Generate Word Search puzzles and export them to Powerpoint file
什麼是Word Search Puzzles?
Word Search Puzzles是由kdpuploader開發的Chrome擴展程式,該擴展的主要功能是“Generate Word Search puzzles and export them to Powerpoint file”。
擴展截圖
下載Word Search Puzzles擴展crx文件
下載Word Search Puzzles擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Thanks to Word Search Puzzles generator, you can:
- Generate automatically Word search puzzles.
- The puzzles are exported to Powerpoint (PPTx) file.
- It gives you the control of font and size and also the position (x and y coordinates) of the grid, the title and the word list
- multiple shaps are supported: default rectangle, circle and squares
- the solutions could be added 擴展基本資訊
| 名稱 | |
| ID | ghceghgnmcaapeepodoibmiofoaeclkm |
| 官方網址 | https://chrome.google.com/webstore/detail/word-search-puzzles/ghceghgnmcaapeepodoibmiofoaeclkm |
| 簡介 | Generate Word Search puzzles and export them to Powerpoint file |
| 檔案大小 | 23.97 KB |
| 安裝次數 | 64 |
| 目前版本 | 1.0.0 |
| 更新時間 | 2021-10-21 |
| 上架時間 | 2021-10-21 |
| 評分 | 1.00/5 共 1 次評分 |
| 開發者 | kdpuploader |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://www.apuzzles.com/wordsearch-generator.html |
| 隱私政策頁面URL | https://www.kdpuploader.com/privacy-policy |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Word Search Puzzles",
"version": "1.0.0",
"manifest_version": 3,
"description": "Generate Word Search puzzles and export them to Powerpoint file",
"homepage_url": "https:\/\/apuzzles.com",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"action": {
"default_popup": "src\/popup\/index.html",
"default_icon": "icons\/icon16.png"
},
"background.service_worker": {
"scripts": [
"src\/bg\/background.js"
],
"persistent": false
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.apuzzles.com\/*"
],
"all_frames": true,
"js": [
"src\/inject\/inject.js"
],
"run_at": "document_idle"
}
]
} | |