YouTube Comment Remover
A very simple extension to hide all YouTube comments.
Vad är YouTube Comment Remover?
YouTube Comment Remover är en Chrome-tillägg utvecklad av Tim Stephani, och dess huvudfunktion är "A very simple extension to hide all YouTube comments.".
Tilläggsskärmbilder
Ladda ner YouTube Comment Remover-förlängningens CRX-fil
Ladda ner YouTube Comment Remover-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
After realizing how horrible the comments section of YouTube is, I decided to create this super simple extension to automatically hide them.
Source available here: https://github.com/timmystephani/youtube_comment_remover
History
---------
v1.0 - First version Grundläggande Information om Tillägg
| Namn | |
| ID | nglipklighejjehapaodhmipldpljobp |
| Officiell webbadress | https://chrome.google.com/webstore/detail/youtube-comment-remover/nglipklighejjehapaodhmipldpljobp |
| Beskrivning | A very simple extension to hide all YouTube comments. |
| Filstorlek | 33.33 KB |
| Antal Installationer | 97 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2015-03-16 |
| Publiceringsdatum | 2015-03-16 |
| Betyg | 3.67/5 Totalt 3 Betyg |
| Utvecklare | Tim Stephani |
| Betalningssätt | free |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "YouTube Comment Remover",
"description": "A very simple extension to hide all YouTube comments.",
"version": "1.0",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"jquery-2.1.3.min.js",
"main.js"
]
}
]
} | |