YouTube Comment Expander

This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.

Vad är YouTube Comment Expander?

YouTube Comment Expander är en Chrome-tillägg utvecklad av Joel Henke, och dess huvudfunktion är "This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.".

Ladda ner YouTube Comment Expander-förlängningens CRX-fil

Ladda ner YouTube Comment Expander-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

                        The bug that this extension fixes happens when you start watching a YouTube video and enter full screen before the comments load. The 'Read More' link will be missing for the first several long comments.

This extension allows you to read those longer comments without reloading the page or loading more comments.                    

Grundläggande Information om Tillägg

Namn YouTube Comment Expander YouTube Comment Expander
ID bknceopjdngnciilahnddipmpjgmpfhe
Officiell webbadress https://chromewebstore.google.com/detail/youtube-comment-expander/bknceopjdngnciilahnddipmpjgmpfhe
Beskrivning This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.
Filstorlek 4.99 KB
Antal Installationer 88
Aktuell Version 1.0
Senast Uppdaterad 2017-08-26
Publiceringsdatum 2017-08-26
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Joel Henke
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Comment Expander",
    "version": "1.0",
    "description": "This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.",
    "author": "Joel Henke",
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    }
}