YouHide
Hides viewed videos on Youtube's subscriptions page
Vad är YouHide?
YouHide är en Chrome-tillägg utvecklad av Maxime Cousinou, och dess huvudfunktion är "Hides viewed videos on Youtube's subscriptions page".
Tilläggsskärmbilder
Ladda ner YouHide-förlängningens CRX-fil
Ladda ner YouHide-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
Automatically hides viewed and partially viewed items and shorts.
Alternate between hidden, quasi-transparent and original display. Grundläggande Information om Tillägg
| Namn | |
| ID | gcdhnfmgkcfffggdjcepdnjnbhcpghfc |
| Officiell webbadress | https://chromewebstore.google.com/detail/youhide/gcdhnfmgkcfffggdjcepdnjnbhcpghfc |
| Beskrivning | Hides viewed videos on Youtube's subscriptions page |
| Filstorlek | 10.28 KB |
| Antal Installationer | 336 |
| Aktuell Version | 2.0.2 |
| Senast Uppdaterad | 2024-01-13 |
| Publiceringsdatum | 2017-09-08 |
| Betyg | 3.88/5 Totalt 17 Betyg |
| Utvecklare | Maxime Cousinou |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouHide",
"description": "Hides viewed videos on Youtube's subscriptions page",
"version": "2.0.2",
"icons": {
"128": "icon.png"
},
"action": {
"default_icon": {
"16": "icon-hidden.png",
"38": "[email protected]"
},
"default_title": "Toggle"
},
"permissions": [
"tabs",
"storage"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"injected.js"
],
"css": [
"injected.css"
]
}
]
} | |