Cook'n Recipe Capture Plugin
This extension captures the recipe in a web page and stores in the user's Cook'n Cloud Account.
Co je Cook'n Recipe Capture Plugin?
Cook'n Recipe Capture Plugin je rozšíření Chrome vyvinuté https://www.dvo.com, a jeho hlavní funkcí je „This extension captures the recipe in a web page and stores in the user's Cook'n Cloud Account.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Cook'n Recipe Capture Plugin
Stáhněte si soubory rozšíření Cook'n Recipe Capture Plugin ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Capture any recipe from any website with just one click. Go to www.dvo.com to get Cook'n and start capturing recipes! With your recipes in Cook'n, you can easily find them again, print them, scale them, add them to a menu plan, make shopping lists, analyze nutritional values, sync them to your mobile device for easy access in the kitchen...and so much more!
Základní Informace o Rozšíření
Název | Cook'n Recipe Capture Plugin |
ID | lmbjckidphkdpchgfangolfcanlcodgf |
Oficiální URL | https://chromewebstore.google.com/detail/cookn-recipe-capture-plug/lmbjckidphkdpchgfangolfcanlcodgf |
Popis | This extension captures the recipe in a web page and stores in the user's Cook'n Cloud Account. |
Velikost souboru | 96.7 KB |
Počet instalací | 7,404 |
Aktuální Verze | 11.1 |
Poslední Aktualizace | 2023-04-19 |
Datum Vydání | 2019-05-14 |
Hodnocení | 4.14/5 Celkem 14 Hodnocení |
Vývojář | https://www.dvo.com |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | http://www.dvo.com/capture-plugin-info.php |
URL Stránky Nápovědy | http://www.dvo.com/capture-plugin-info.php |
URL Stránky Zásad Ochrany Soukromí | http://www.dvo.com/privacy.php |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Cook'n Recipe Capture Plugin", "description": "This extension captures the recipe in a web page and stores in the user's Cook'n Cloud Account.", "version": "11.1", "action": { "default_icon": "\/img\/cook'n.png", "default_popup": "\/html\/popup.html" }, "icons": { "16": "\/img\/cookn_16.png", "48": "\/img\/cookn_48.png", "128": "\/img\/cookn_128.png" }, "permissions": [ "activeTab", "storage" ], "host_permissions": [ "https:\/\/app.cookn-cloud.com\/", "http:\/\/localhost:5918\/" ], "short_name": "Cook'n Recipe Capture Plugin", "background": { "service_worker": "\/js\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.dvo.com\/*" ], "js": [ "\/js\/dvo_msg_listeners.js", "\/js\/helper\/storage.js", "\/js\/helper\/session.js" ] } ], "options_page": "\/html\/options.html", "options_ui": { "page": "\/html\/options.html" }, "externally_connectable": { "matches": [ "*:\/\/*.dvo.com\/*" ] } } |