Youtube Relist
Lists youtube videos that are unlisted.
什麼是Youtube Relist?
Youtube Relist是由http://fwra.me開發的Chrome擴展程式,該擴展的主要功能是“Lists youtube videos that are unlisted.”。
下載Youtube Relist擴展crx文件
下載Youtube Relist擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension is needed to help add unlisted videos to the database. Head to http://yr.fwra.me/ to search for unlisted videos.
擴展基本資訊
名稱 | |
ID | cjmpedjkkpihnongpkgkmjiemmpjhndi |
官方網址 | https://chrome.google.com/webstore/detail/youtube-relist/cjmpedjkkpihnongpkgkmjiemmpjhndi |
簡介 | Lists youtube videos that are unlisted. |
檔案大小 | 39.02 KB |
安裝次數 | 368 |
目前版本 | 1.0 |
更新時間 | 2017-10-25 |
上架時間 | 2017-10-25 |
評分 | 2.33/5 共 6 次評分 |
開發者 | http://fwra.me |
付費類型 | free |
擴展官網 | http://yr.fwra.me/ |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Relist", "description": "Lists youtube videos that are unlisted.", "version": "1.0", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Youtube Relist" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch?*" ], "js": [ "jquery-3.2.1.min.js", "videoScript.js" ] }, { "matches": [ "http:\/\/yr.fwra.me\/" ], "js": [ "checker.js" ], "run_at": "document_end" } ] } |