Speedrun.Com Hide Video
Hide the possibly undesired stream on front page of speedrun.com
Что такое Speedrun.Com Hide Video?
Speedrun.Com Hide Video - это расширение Chrome, разработанное btrim (Cr extensions), и его основная функция - "Hide the possibly undesired stream on front page of speedrun.com".
Снимки экрана расширения
Скачать файл CRX расширения Speedrun.Com Hide Video
Скачайте файлы расширений Speedrun.Com Hide Video в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Speedrun.com recently started featuring a stream on its front-page, and I don't particularly want to see this stream show up when I go to speedrun.com's front-page.
This extension simply removes the element with id 'twitch' Основная информация о расширении
| Название | |
| ID | nlcgfkpgonpkpmibhiadejfhillahpbi |
| Официальный URL | https://chromewebstore.google.com/detail/speedruncom-hide-video/nlcgfkpgonpkpmibhiadejfhillahpbi |
| Описание | Hide the possibly undesired stream on front page of speedrun.com |
| Размер файла | 8.46 KB |
| Количество установок | 24 |
| Текущая Версия | 0.0.0.1 |
| Последнее Обновление | 2018-12-15 |
| Дата публикации | 2018-12-14 |
| Рейтинг | 1.00/5 Всего 1 оценок |
| Разработчик | btrim (Cr extensions) |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Speedrun.Com Hide Video",
"description": "Hide the possibly undesired stream on front page of speedrun.com",
"version": "0.0.0.1",
"permissions": [
"https:\/\/speedrun.com\/",
"https:\/\/www.speedrun.com\/"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.speedrun.com\/",
"http:\/\/speedrun.com\/"
],
"js": [
"srdc_hide_video.js"
],
"run_at": "document_start"
}
]
} | |