Focused Youtube
Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube
什麼是Focused Youtube?
Focused Youtube是由makaroni4開發的Chrome擴展程式,該擴展的主要功能是“Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube”。
擴展截圖
下載Focused Youtube擴展crx文件
下載Focused Youtube擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is an open-source extension that changes homepage of Youtube (only search bar) and drops recommendations/comments from other pages.
Extension requires access to Youtube website to change its outlook.
Extension icon opens a popup with an option to show/hide the comments section of a video (to check timestamps in comments, for example).
Enjoy <3
Important: the extension doesn't collect any data about Youtube usage. 擴展基本資訊
| 名稱 | |
| ID | nfghbmabdoakhobmimnjkamfdnpfammn |
| 官方網址 | https://chromewebstore.google.com/detail/focused-youtube/nfghbmabdoakhobmimnjkamfdnpfammn |
| 簡介 | Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube |
| 檔案大小 | 170 KB |
| 安裝次數 | 4,232 |
| 目前版本 | 1.12 |
| 更新時間 | 2024-01-27 |
| 上架時間 | 2019-01-06 |
| 評分 | 4.88/5 共 72 次評分 |
| 開發者 | makaroni4 |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/makaroni4/focused_youtube |
| 說明頁面URL | https://github.com/makaroni4/focused_youtube/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Focused Youtube",
"description": "Open source extension that removes comments\/recommendations from Youtube: https:\/\/github.com\/makaroni4\/focused_youtube",
"version": "1.12",
"author": "Anatoli Makarevich",
"icons": {
"128": "extension_icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
],
"js": [
"assets\/extension.js"
],
"css": [
"assets\/extension.css"
],
"run_at": "document_end",
"all_frames": true
}
],
"action": {
"default_popup": "popup.html"
},
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
],
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"fonts\/Roboto-Regular.ttf",
"assets\/popup.js",
"assets\/popup.css",
"images\/search_icon.svg",
"images\/youtube_logo.png",
"images\/search_icon_dark.svg",
"images\/youtube_logo_dark.png",
"images\/extension_icon.png"
],
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
]
}
]
} | |