Tater Jots

A chrome extension used to take notes on videos

Τι είναι το Tater Jots;

Το Tater Jots είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://taterjots.com, και η κύρια λειτουργία του είναι "A chrome extension used to take notes on videos".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Tater Jots

Λήψη αρχείων επέκτασης Tater Jots σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        A chrome extension used to take notes on Youtube videos and crush tutorials with.
 
Take notes and set chapters on videos or tutorials that you are watching on YouTube with tater jots!  Come back to the parts you think are important instantly. Long gone are the days where you manually click through a video timeline to find what you want.

Quickly grow your knowledge and make video learning less frustrating by setting your own video timestamps with quick notes aka jots :) Take notes seamlessly within the same window as you watch videos.

We’re all about getting to the point: No sign-in/ sign-up necessary. 
Download, Pin and start growing your Knowledge effectively. This is hotkey learning and we believe in you <3. 

• Take notes in real time while watching videos. 
• Save points on the timeline that you deem important. 
• Update your notes  by creating groups to make your learning experience with video more efficient. 
• Search through your notes to quickly get to what you need. 
• Sort them by alphabetical order, date modified and date added. 

Update Notes:
V1.0.0.5
-Fixed bug where timestamp was not tracking video play time.

V0.0.0.4
- New color scheme for better visibility 
- Updated UI
- Quality of life improvements

V0.0.0.3
- Quality of life improvement: New Groups disappear if you don't click Enter.
-Fixed bug with timestamp appearing when opening multiple YouTube tabs.
-Mac Users: Now CMD + SHIFT + Down Arrow for jot hotkey instead of CTRL
-Jot Input Confirmation :)
-Adjusted button opacity for better full screen viewing experience.
-Update jots button submission feedback added.
-Update Welcome screen for better legibility 

V0.0.0.2
-Update to correct hot key image for macs on Welcome screen                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Tater Jots Tater Jots
ID blhbaoljldmcdalcofbkckmpjfjfdofi
Επίσημο URL https://chromewebstore.google.com/detail/tater-jots/blhbaoljldmcdalcofbkckmpjfjfdofi
Περιγραφή A chrome extension used to take notes on videos
Μέγεθος Αρχείου 372 KB
Αριθμός Εγκαταστάσεων 63
Τρέχουσα Έκδοση 1.0.0.5
Τελευταία Ενημέρωση 2023-08-28
Ημερομηνία Δημοσίευσης 2022-07-03
Αξιολόγηση 5.00/5 Συνολικά 12 Αξιολογήσεις
Προγραμματιστής https://taterjots.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.taterjots.com
Διεύθυνση URL της Σελίδας Βοήθειας https://www.taterjots.com/contact
URL της Σελίδας Πολιτικής Απορρήτου https://www.taterjots.com/privacy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension used to take notes on videos",
    "version": "1.0.0.5",
    "manifest_version": 3,
    "name": "Tater Jots",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "tj48.png"
    },
    "icons": {
        "16": "icon_Dev_16.png",
        "48": "tj48.png",
        "128": "tj128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "assets\/img\/tj128.png",
                "assets\/img\/tj48.png",
                "pages\/components\/img\/tj25.png",
                "\/pages\/components\/img\/*",
                "*.png"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}