Video Annotation & Bookmarking

No more notes on paper - create annotations and add in-video bookmarks right from YouTube, Vimeo, Coursera and many more.

Τι είναι το Video Annotation & Bookmarking;

Το Video Annotation & Bookmarking είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Vladimir Stoyak, και η κύρια λειτουργία του είναι "No more notes on paper - create annotations and add in-video bookmarks right from YouTube, Vimeo, Coursera and many more.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Video Annotation & Bookmarking

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

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

                        This plugin allows to watch videos on YouTube and other sites and create personal in-video bookmarks, annotations and comments which you can then share with you students and friends.

Examples:

     - Create video table of content
     - Create and share annotations and comments with students
     - Highlight important sections to come back to for later reviews
     - Share a reference to a specific time in long videos with your friends


NOTES: 

     - It will create automatic "Pause" bookmarks (green circle) every time you pause video
     - It will pause video when you start typing "Comment" and will start playing again once you click "Add Bookmark"


How TO:

- To ADD a Bookmark
         - click anywhere on "timeline bar", or
         - pause video in any place, or
         - type "Note" and click "Add Bookmark", or
         - simply click "Add Bookmark"

- To DELETE a Bookmark
         - drag the marker off the "timeline" bar
         - click Delete button in "My Bookmarks" list

- To UPDATE time of the bookmark, just drag the marker along "timeline" bar

- To POSITION video to bookmarked time
         - click on the marker on the "timeline" bar, or
         - click on any bookmarks in "My Bookmark" list

I am planning to add support for more video sites shortly. Vimeo and Cousera are on the top of the list.

Please email me at [email protected] with any issues, suggestions or questions.

Happy Video bookmarking!                    

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

Όνομα Video Annotation & Bookmarking Video Annotation & Bookmarking
ID apoimieffgakgcbagednnmdhgaiedbea
Επίσημο URL https://chrome.google.com/webstore/detail/video-annotation-bookmark/apoimieffgakgcbagednnmdhgaiedbea
Περιγραφή No more notes on paper - create annotations and add in-video bookmarks right from YouTube, Vimeo, Coursera and many more.
Μέγεθος Αρχείου 269 KB
Αριθμός Εγκαταστάσεων 410
Τρέχουσα Έκδοση 1.6
Τελευταία Ενημέρωση 2014-09-17
Ημερομηνία Δημοσίευσης 2014-09-17
Αξιολόγηση 2.89/5 Συνολικά 18 Αξιολογήσεις
Προγραμματιστής Vladimir Stoyak
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Annotation & Bookmarking",
    "version": "1.6",
    "author": "Vladimir Stoyak",
    "description": "No more notes on paper - create annotations and add in-video bookmarks right from YouTube, Vimeo, Coursera and many more.",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "js": [
                "config.js",
                "jquery-2.1.1.min.js",
                "d3.v3.min.js",
                "lodash.min.js",
                "jquery.contenteditable.js",
                "content_script.js"
            ],
            "css": [
                "bootstrap.min.css",
                "content_styles.css"
            ],
            "matches": [
                "*:\/\/*.youtube1.com\/watch?v=*"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "star-6-256.png"
    },
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "activeTab",
        "webNavigation",
        "*:\/\/*.youtube.com\/watch?v=*"
    ],
    "icons": {
        "16": "star-6-256.png",
        "48": "star-6-256.png",
        "128": "star-6-256.png"
    },
    "web_accessible_resources": [
        "fonts\/*.*"
    ]
}