Youtube Longs
Shows gameplay footage under Youtube videos.
什麼是Youtube Longs?
Youtube Longs是由simc.sambolec開發的Chrome擴展程式,該擴展的主要功能是“Shows gameplay footage under Youtube videos.”。
擴展截圖
下載Youtube Longs擴展crx文件
下載Youtube Longs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Do you need overstimulation? This extension adds random gameplay footage under Youtube videos that you are watching to keep you entertained! 擴展基本資訊
| 名稱 | |
| ID | inajamlogoahnbliabnogbcomnbiefbb |
| 官方網址 | https://chromewebstore.google.com/detail/youtube-longs/inajamlogoahnbliabnogbcomnbiefbb |
| 簡介 | Shows gameplay footage under Youtube videos. |
| 檔案大小 | 22.01 KB |
| 安裝次數 | 1,935 |
| 目前版本 | 1.1.2 |
| 更新時間 | 2023-03-26 |
| 上架時間 | 2023-02-23 |
| 評分 | 4.07/5 共 27 次評分 |
| 開發者 | simc.sambolec |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Youtube Longs",
"description": "Shows gameplay footage under Youtube videos.",
"version": "1.1.2",
"action": {
"default_popup": "index.html"
},
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"js": [
"js\/functions.js",
"js\/insertVideo.js"
],
"css": [
"css\/embeded.css"
],
"matches": [
"*:\/\/www.youtube.com\/*"
],
"run_at": "document_end"
}
],
"icons": {
"128": "yt_longs.png"
},
"permissions": [
"tabs",
"storage"
],
"default_locale": "en",
"web_accessible_resources": [
{
"resources": [
"css\/width-fix.css"
],
"matches": [
"*:\/\/www.youtube.com\/*"
]
}
]
} | |