YouTube Tarot

Makes you a tarot deck from your YouTube recommendations.

What is YouTube Tarot?

YouTube Tarot is a Chrome extension developed by jakub fiala, and its main feature is "Makes you a tarot deck from your YouTube recommendations.".

Extension Screenshots

screenshot
screenshot

Download YouTube Tarot Extension CRX File

Download YouTube Tarot extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension uses machine learning to transform the recommendations on your YouTube homepage into tarot cards. First, an object recognition neural network tries to find objects in the video's thumbnail. Then, a card title is generated from the found object names. Lastly, the portion of the thumbnail where the object is thought to be is stylised using a "style transfer" neural network based on a card from the famous Rider-Waite deck.                    

Extension Basic Information

Name YouTube Tarot YouTube Tarot
ID fmlanajlamdlhgpfbjmfaepmjgeobfih
Official URL https://chrome.google.com/webstore/detail/youtube-tarot/fmlanajlamdlhgpfbjmfaepmjgeobfih
Description Makes you a tarot deck from your YouTube recommendations.
File Size 51.93 MB
Installation Count 18
Current Version 1.2
Last Updated 2019-05-03
Publish Date 2019-05-03
Developer jakub fiala
Email [email protected]
Payment Type free
Extension Website http://hermetechnics.life
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Tarot",
    "version": "1.2",
    "description": "Makes you a tarot deck from your YouTube recommendations.",
    "manifest_version": 2,
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "inkjet.min.js",
                "tfjs-yolo-tiny.js",
                "style-transfer.js",
                "youtube-tarot.js"
            ],
            "css": [
                "youtube-tarot.css"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "st.woff2",
        "tarot_frame.png",
        "tarot3_thesun.jpg",
        "models\/style\/model.json",
        "models\/style\/group1-shard1of3",
        "models\/style\/group1-shard2of3",
        "models\/style\/group1-shard3of3",
        "models\/transformer\/model.json",
        "models\/transformer\/group1-shard1of1",
        "models\/yolo\/group10-shard1of1",
        "models\/yolo\/group11-shard1of1",
        "models\/yolo\/group12-shard1of1",
        "models\/yolo\/group13-shard1of1",
        "models\/yolo\/group14-shard1of2",
        "models\/yolo\/group14-shard2of2",
        "models\/yolo\/group15-shard1of5",
        "models\/yolo\/group15-shard2of5",
        "models\/yolo\/group15-shard3of5",
        "models\/yolo\/group15-shard4of5",
        "models\/yolo\/group15-shard5of5",
        "models\/yolo\/group16-shard1of5",
        "models\/yolo\/group16-shard2of5",
        "models\/yolo\/group16-shard3of5",
        "models\/yolo\/group16-shard4of5",
        "models\/yolo\/group16-shard5of5",
        "models\/yolo\/group17-shard1of1",
        "models\/yolo\/group1-shard1of1",
        "models\/yolo\/group2-shard1of1",
        "models\/yolo\/group3-shard1of1",
        "models\/yolo\/group4-shard1of1",
        "models\/yolo\/group5-shard1of1",
        "models\/yolo\/group6-shard1of1",
        "models\/yolo\/group7-shard1of1",
        "models\/yolo\/group8-shard1of1",
        "models\/yolo\/group9-shard1of1",
        "models\/yolo\/model2.json"
    ]
}