Cut YouTube Videos with VideoSegments

Easiest way to remove boring content from YouTube videos. Great for listening to music.

Τι είναι το Cut YouTube Videos with VideoSegments;

Το Cut YouTube Videos with VideoSegments είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Alex Lys, και η κύρια λειτουργία του είναι "Easiest way to remove boring content from YouTube videos. Great for listening to music.".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Cut YouTube Videos with VideoSegments

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

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

                        Important: reload YouTube tabs after installation (only once).

Key features:
    ✓ Interactive panel: just click buttons.
    ✓ Community-based segmentation: more than 15000 videos already segmented!
    ✓ Dozen of settings: hotkeys, filters, color schemes, and much more.
    ✓ Open source: everyone can contribute.

This extension will give you ability to easily remove:
    - Talking from music clips.
    - Annoying content.
    - Intros, outros.
    - Everything else you dont like.
	
Changelog: 
	- Full: https://github.com/videosegments/videosegments/commits/master                    

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

Όνομα Cut YouTube Videos with VideoSegments Cut YouTube Videos with VideoSegments
ID eddbomdegiekipngdepnddkoemagllbn
Επίσημο URL https://chromewebstore.google.com/detail/cut-youtube-videos-with-v/eddbomdegiekipngdepnddkoemagllbn
Περιγραφή Easiest way to remove boring content from YouTube videos. Great for listening to music.
Μέγεθος Αρχείου 217 KB
Αριθμός Εγκαταστάσεων 2,642
Τρέχουσα Έκδοση 1.11.6
Τελευταία Ενημέρωση 2019-08-29
Ημερομηνία Δημοσίευσης 2019-08-29
Αξιολόγηση 3.16/5 Συνολικά 38 Αξιολογήσεις
Προγραμματιστής Alex Lys
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://videosegments.org/privacy.php
Υποστηριζόμενες Γλώσσες en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "version": "1.11.6",
    "applications": {
        "gecko": {
            "id": "{fca9d8e4-a5f2-4c00-9873-f38176edcba0}"
        }
    },
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "32": "icons\/icon-32.png",
        "64": "icons\/icon-64.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "64": "icons\/icon-64.png"
        },
        "default_title": "VideoSegments",
        "default_popup": "settings\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "external\/popper.js",
                "utils\/utils.js",
                "storage\/storage.js",
                "observer\/observer.js",
                "player\/player.js",
                "segmentsbar\/segmentsbar.js",
                "smart-cursor\/smart-cursor.js",
                "editor\/editor.js",
                "modals\/modals.js",
                "filters\/filters.js",
                "tutorial\/tutorial.js",
                "content\/content.js"
            ],
            "css": [
                "css\/styles.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "https:\/\/*.videosegments.org\/*",
        "unlimitedStorage",
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        "editor\/editor.html",
        "editor\/entry.html",
        "modals\/small.html",
        "modals\/big.html",
        "modals\/captcha.html",
        "tutorial\/tutorial.html",
        "editor\/cut-button.html"
    ]
}