VeeHD Enhanced

Site enhancements for VeeHD.com members and guests. "This is how VeeHD was meant to be..."

Τι είναι το VeeHD Enhanced;

Το VeeHD Enhanced είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον SubDevo, και η κύρια λειτουργία του είναι "Site enhancements for VeeHD.com members and guests. "This is how VeeHD was meant to be..."".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Also for FireFox!
https://addons.mozilla.org/en-US/firefox/addon/veehd-enhanced/

★★★★★ About ★★★★★
The goal of this extension is to make the VeeHD.com experience as user-friendly as possible without changing the "brand that is veehd". No major cosmetic theme changes, simply "enhanced". Most commonly used info is a click away.

All site bugs that can be fixed client side has been done. Many features have been added to "enhance" the basic functionalility of the site for all, including special features for uploaders and normal users alike.

A couple examples...
On video pages, you now have a choice of using HTML5 video player, DivX Web Player, or VLC Web Plugin instead of just Flash. Optional player options will appear only if installed, enabled and supported by the browser. For uploaders... streamlined video edit page, enhanced overview page with many helpful features such as video sorting, filtering and statistics (new views, avg video size etc). This is a VERY small example and there are a huge amount of obvious and not so obvious helpful enhancements. More to come...

★★★★★ Privacy ★★★★★
I do not track, store or send any information that you enter while on veehd to me or anyone else. Any ads/redirects or popups you see are from VeeHD and not generated by this add-on. I DO use localStorage for some of the addons functionality. Such as storing the "threads you recently participated in" in the forum, your last used color for the color picker, and vid views for use on the overview page.                    

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

Όνομα VeeHD Enhanced VeeHD Enhanced
ID ehhipombbnjmkdijllcbebglddgcnfek
Επίσημο URL https://chromewebstore.google.com/detail/veehd-enhanced/ehhipombbnjmkdijllcbebglddgcnfek
Περιγραφή Site enhancements for VeeHD.com members and guests. "This is how VeeHD was meant to be..."
Μέγεθος Αρχείου 260 KB
Αριθμός Εγκαταστάσεων 517
Τρέχουσα Έκδοση 1.4.6
Τελευταία Ενημέρωση 2018-09-19
Ημερομηνία Δημοσίευσης 2018-09-18
Αξιολόγηση 2.60/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής SubDevo
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "VeeHD Enhanced",
    "short_name": "VeeHD Enhanced",
    "description": "Site enhancements for VeeHD.com members and guests.\n\"This is how VeeHD was meant to be...\"",
    "version": "1.4.6",
    "author": "SubDevo",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/veehd-enhanced\/ehhipombbnjmkdijllcbebglddgcnfek",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/veehd.com\/*"
            ],
            "run_at": "document_start",
            "all_frames": false,
            "js": [
                "veeinit.js"
            ]
        },
        {
            "matches": [
                "*:\/\/veehd.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": false,
            "css": [
                "css\/vee_main.css"
            ],
            "js": [
                "veecontent.js",
                "zenscroll.js"
            ]
        },
        {
            "matches": [
                "*:\/\/veehd.com\/forum\/*"
            ],
            "css": [
                "css\/vee_forum.css"
            ]
        },
        {
            "matches": [
                "*:\/\/veehd.com\/forum\/view*"
            ],
            "css": [
                "css\/vee_forumview.css"
            ]
        },
        {
            "matches": [
                "*:\/\/veehd.com\/forum\/viewtopic*"
            ],
            "css": [
                "css\/vee_forumviewtopic.css"
            ]
        },
        {
            "matches": [
                "*:\/\/veehd.com\/bookmarks*"
            ],
            "css": [
                "css\/vee_bookmarks.css"
            ]
        },
        {
            "matches": [
                "*:\/\/veehd.com\/dashboard*"
            ],
            "css": [
                "css\/vee_dashboard.css"
            ]
        },
        {
            "matches": [
                "*:\/\/veehd.com\/messages*"
            ],
            "css": [
                "css\/vee_messages.css"
            ]
        },
        {
            "matches": [
                "*:\/\/veehd.com\/overview*"
            ],
            "css": [
                "css\/vee_overview.css"
            ]
        },
        {
            "matches": [
                "*:\/\/veehd.com\/video\/*"
            ],
            "css": [
                "css\/vee_video.css"
            ]
        },
        {
            "matches": [
                "*:\/\/veehd.com\/edit-video*"
            ],
            "css": [
                "css\/vee_editvideo.css"
            ]
        },
        {
            "matches": [
                "*:\/\/veehd.com\/upload*"
            ],
            "css": [
                "css\/vee_upload.css"
            ]
        }
    ],
    "options_page": "help.html",
    "icons": {
        "128": "icons\/icon128.png",
        "96": "icons\/icon96.png",
        "48": "icons\/icon48.png",
        "32": "icons\/icon32.png",
        "16": "icons\/button.png"
    },
    "permissions": [
        "*:\/\/veehd.com\/*",
        "storage"
    ],
    "web_accessible_resources": [
        "Enhanced.html",
        "help.html",
        "images\/ForumPost_Op.png",
        "images\/ForumPost_Title.png",
        "images\/GotoBottom_off.png",
        "images\/GotoBottom_on.png",
        "images\/GotoTop_off.png",
        "images\/GotoTop_on.png",
        "images\/LinkList.png",
        "images\/logout.gif",
        "images\/Overview_Background.png",
        "images\/related.png",
        "images\/searchBtn.gif",
        "images\/StreamWithDivX.png",
        "images\/StreamWithHTML5.png",
        "images\/StreamWithVLC.png",
        "images\/ToggleActualDefaultSize.png",
        "images\/topSelect.gif",
        "images\/UBBC_Bold.gif",
        "images\/UBBC_Center.gif",
        "images\/UBBC_Color.gif",
        "images\/UBBC_Image.gif",
        "images\/UBBC_Indent.gif",
        "images\/UBBC_Italic.gif",
        "images\/UBBC_Large.gif",
        "images\/UBBC_Link.gif",
        "images\/UBBC_List.gif",
        "images\/UBBC_NoQuote.gif",
        "images\/UBBC_Pre.gif",
        "images\/UBBC_Quote.gif",
        "images\/UBBC_Small.gif",
        "images\/UBBC_Strikethrough.gif",
        "images\/UBBC_Subscript.gif",
        "images\/UBBC_Superscript.gif",
        "images\/UBBC_Underline.gif",
        "images\/UBBC_YouTube.gif",
        "images\/Upload_Progressbar.png",
        "images\/Video_Preview_Background.png",
        "images\/Vidlist1_Background.png",
        "images\/Vidlist2_Background.png",
        "images\/VLC_Buffering.gif",
        "images\/VLC_ProgressBar.gif",
        "images\/addToCollection.gif",
        "images\/addToCollectionOver.gif",
        "images\/Comment_Background.png",
        "images\/current_tab_bg.gif",
        "images\/CyclePreviewPics.png",
        "images\/DeleteHover.png",
        "images\/Forum_Uneven_Background.gif",
        "images\/HTML5_popout_background.png",
        "images\/HTML5_popout.png",
        "images\/Forum_Uneven_Background_Vertical.gif",
        "images\/HTTP_locked.png",
        "images\/HTTP_unlocked.png",
        "images\/icon_settings.png"
    ]
}