Word Search Puzzles

Generate Word Search puzzles and export them to Powerpoint file

Was ist Word Search Puzzles?

Word Search Puzzles ist eine Chrome-Erweiterung, die von kdpuploader entwickelt wurde, und ihr Hauptmerkmal ist "Generate Word Search puzzles and export them to Powerpoint file".

Erweiterungsscreenshots

screenshot

Word Search Puzzles-Erweiterungs-CRX-Datei herunterladen

Laden Sie Word Search Puzzles-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Word Search Puzzles Word Search Puzzles
ID ghceghgnmcaapeepodoibmiofoaeclkm
Offizielle URL https://chrome.google.com/webstore/detail/word-search-puzzles/ghceghgnmcaapeepodoibmiofoaeclkm
Beschreibung Generate Word Search puzzles and export them to Powerpoint file
Dateigröße 23.97 KB
Installationsanzahl 64
Aktuelle Version 1.0.0
Letztes Update 2021-10-21
Veröffentlichungsdatum 2021-10-21
Bewertung 1.00/5 Insgesamt 1 Bewertungen
Entwickler kdpuploader
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.apuzzles.com/wordsearch-generator.html
URL der Datenschutzrichtlinien-Seite https://www.kdpuploader.com/privacy-policy
Unterstützte Sprachen 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"
        }
    ]
}