YouTube++

This extension shows the publishing or uploading date of related youtube videos in sidebar.

Vad är YouTube++?

YouTube++ är en Chrome-tillägg utvecklad av divyum, och dess huvudfunktion är "This extension shows the publishing or uploading date of related youtube videos in sidebar.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner YouTube++-förlängningens CRX-fil

Ladda ner YouTube++-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Ever wondered if you could get the published date of related videos without even opening the videos in youtube, here is an extension which will solve this for you.                    

Grundläggande Information om Tillägg

Namn YouTube++ YouTube++
ID mbaflkdlneldejanggphlhcepncjfaco
Officiell webbadress https://chromewebstore.google.com/detail/youtube++/mbaflkdlneldejanggphlhcepncjfaco
Beskrivning This extension shows the publishing or uploading date of related youtube videos in sidebar.
Filstorlek 229 KB
Antal Installationer 2,716
Aktuell Version 2.3.2
Senast Uppdaterad 2019-11-12
Publiceringsdatum 2019-11-11
Betyg 3.77/5 Totalt 52 Betyg
Utvecklare divyum
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube++",
    "short_name": "YTD",
    "description": "This extension shows the publishing or uploading date of related youtube videos in sidebar.",
    "version": "2.3.2",
    "icons": {
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "image\/loader_gif.gif"
    ]
}