ResumeTube

Keep and Resume YouTube videos with a click.

Τι είναι το ResumeTube;

Το ResumeTube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Tiny Web Apps, και η κύρια λειτουργία του είναι "Keep and Resume YouTube videos with a click.".

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

screenshot

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

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

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

                        No login required. Useful for following lectures, presentations, tutorials or any other longer videos on YouTube.

Whenever you pause a video, it will be saved at the point you paused. You can go back to it and view all your saved videos by clicking the ResumeTube icon in the toolbar.

If you have ResumeTube on other computers and sync Chrome, your videos will be available on all of them, synced to where you left off. 

Note: 
- This extension does not download videos, it resumes them on youtube.com.
- If you clear the browser's data, your videos will be gone too! 

** Version 1.0.7 **
- New design
- Video thumbnail
- Progress indicator                    

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

Όνομα ResumeTube ResumeTube
ID hjpjeoggaghioalbepadcjcjpjhofnbb
Επίσημο URL https://chromewebstore.google.com/detail/resumetube/hjpjeoggaghioalbepadcjcjpjhofnbb
Περιγραφή Keep and Resume YouTube videos with a click.
Μέγεθος Αρχείου 63.51 KB
Αριθμός Εγκαταστάσεων 1,275
Τρέχουσα Έκδοση 1.0.7
Τελευταία Ενημέρωση 2014-03-03
Ημερομηνία Δημοσίευσης 2014-03-03
Αξιολόγηση 3.36/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής Tiny Web Apps
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ResumeTube",
    "version": "1.0.7",
    "description": "Keep and Resume YouTube videos with a click.",
    "icons": {
        "128": "img\/icon-x128.png",
        "64": "img\/icon-x64.png",
        "48": "img\/icon-x48.png",
        "19": "img\/icon-x19.png"
    },
    "permissions": [
        "storage",
        "background"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.min.js"
        ]
    },
    "web_accessible_resources": [
        "js\/resume-tube-inject.min.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/content.min.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "38": "img\/icon-x38.png",
            "19": "img\/icon-x19.png"
        },
        "default_title": "ResumeTube",
        "default_popup": "popup.html"
    }
}