Hide YouTube™ Video
Hide YouTube video
Hvad er Hide YouTube™ Video?
Hide YouTube™ Video er en Chrome-udvidelse udviklet af Cettoana, og dens hovedfunktion er "Hide YouTube video".
Udvidelsesskærmbilleder
Download Hide YouTube™ Video-udvidelses-CRX-fil
Download Hide YouTube™ Video-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
# Feature - Hide Youtube video, listen to music without showing video - Hide all recommended video's thumbnails ---------------------------------------- If you have any problems or suggestions, welcome to create an issue in the github repository: https://github.com/cettoana/hide-youtube-video
Grundlæggende oplysninger om udvidelsen
Navn | Hide YouTube™ Video |
ID | lminokaobchppnocfchcjcenlmodehmi |
Officiel URL | https://chromewebstore.google.com/detail/hide-youtube-video/lminokaobchppnocfchcjcenlmodehmi |
Beskrivelse | Hide YouTube video |
Filstørrelse | 11.63 KB |
Antal Installationer | 73 |
Nuværende Version | 0.1.1 |
Senest Opdateret | 2019-01-03 |
Udgivelsesdato | 2019-01-03 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | Cettoana |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/cettoana/hide-youtube-video |
Hjælpeside-URL | https://github.com/cettoana/hide-youtube-video |
Understøttede Sprog | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide YouTube\u2122 Video", "version": "0.1.1", "description": "Hide YouTube video", "background": { "scripts": [ "dist\/background.js" ], "persistent": false }, "permissions": [ "https:\/\/www.youtube.com\/*", "declarativeContent", "tabs", "activeTab", "storage" ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/image_16.png", "32": "images\/image_32.png", "48": "images\/image_48.png", "128": "images\/image_128.png" } }, "icons": { "16": "images\/image_16.png", "32": "images\/image_32.png", "48": "images\/image_48.png", "128": "images\/image_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "dist\/insertCSS.js", "dist\/removeCSS.js" ], "css": [ "styles\/default.css" ], "run_at": "document_start" } ] } |