Youtube Hider
This is a Chrome extension to hide videos and images on YouTube.
Vad är Youtube Hider?
Youtube Hider är en Chrome-tillägg utvecklad av Miri Ahn, och dess huvudfunktion är "This is a Chrome extension to hide videos and images on YouTube.".
Tilläggsskärmbilder
Ladda ner Youtube Hider-förlängningens CRX-fil
Ladda ner Youtube Hider-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
You can toggle a visibility of a group of Youtube elements on the list below, respectively: - Video - Video thumbnail - User profile photo Update 1.1 (2019/11/25) - Added a button to enable or disable all checkboxes.
Grundläggande Information om Tillägg
Namn | |
ID | cnaimccmiafebfliaiefkdfmdffgmjph |
Officiell webbadress | https://chrome.google.com/webstore/detail/youtube-hider/cnaimccmiafebfliaiefkdfmdffgmjph |
Beskrivning | This is a Chrome extension to hide videos and images on YouTube. |
Filstorlek | 8.85 KB |
Antal Installationer | 60 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2019-11-29 |
Publiceringsdatum | 2019-11-29 |
Betyg | 4.25/5 Totalt 4 Betyg |
Utvecklare | Miri Ahn |
E-post | [email protected] |
Betalningssätt | free |
Hjälpsida URL | https://github.com/kameru/youtube-hider/issues |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Hider", "version": "1.1", "description": "This is a Chrome extension to hide videos and images on YouTube.", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "hidingController.js" ] } ], "web_accessible_resources": [ "hide_thumb.css", "hide_video.css", "hide_icon.css", "popup.js", "hidingController.js" ], "permissions": [ "activeTab", "storage", "declarativeContent" ], "page_action": { "default_icon": "images\/hide.png", "default_popup": "popup.html" }, "manifest_version": 2 } |