No Scroll Tube

This lightweight extension adds the ability to pin YouTube videos and prevent scrolling outside of page view

Vad är No Scroll Tube?

No Scroll Tube är en Chrome-tillägg utvecklad av Hyper Expert, och dess huvudfunktion är "This lightweight extension adds the ability to pin YouTube videos and prevent scrolling outside of page view".

Tilläggsskärmbilder

screenshot

Ladda ner No Scroll Tube-förlängningens CRX-fil

Ladda ner No Scroll Tube-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

                                            

Grundläggande Information om Tillägg

Namn No Scroll Tube No Scroll Tube
ID ejkedopdhafifdnmehiajbocpmlneico
Officiell webbadress https://chromewebstore.google.com/detail/no-scroll-tube/ejkedopdhafifdnmehiajbocpmlneico
Beskrivning This lightweight extension adds the ability to pin YouTube videos and prevent scrolling outside of page view
Filstorlek 16.07 KB
Antal Installationer 63
Aktuell Version 1.0
Senast Uppdaterad 2016-07-29
Publiceringsdatum 2016-07-24
Betyg 4.00/5 Totalt 4 Betyg
Utvecklare Hyper Expert
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://noscrolltube.com
Hjälpsida URL http://noscrolltube.com
URL till Sekretesspolicy Sidan http://hyperexpert.com
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "No Scroll Tube",
    "description": "This lightweight extension adds the ability to pin YouTube videos and prevent scrolling outside of page view",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "new.css"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "version": "1.0",
    "browser_action": {
        "default_icon": "images\/icon64.png"
    },
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "images\/pinPlayer.png"
    ]
}