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"입니다.

확장 프로그램 스크린샷

screenshot

Word Search Puzzles 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Word Search Puzzles Word Search Puzzles
ID ghceghgnmcaapeepodoibmiofoaeclkm
공식 URL 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"
        }
    ]
}