YouTube viewer
Keep tracking your favorite youtube channels with less hassle
YouTube viewerとは何ですか?
YouTube viewerはAXeL-devによって開発されたChromeの拡張機能で、その主な機能は「Keep tracking your favorite youtube channels with less hassle」です。
拡張機能のスクリーンショット
YouTube viewer拡張機能のCRXファイルをダウンロード
YouTube viewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
YouTube channels tracking made easy 拡張機能の基本情報
| 名前 | |
| ID | lmcpajkgakbmgbjfmgomhpmmpfaadpdp |
| 公式URL | https://chromewebstore.google.com/detail/youtube-viewer/lmcpajkgakbmgbjfmgomhpmmpfaadpdp |
| 説明 | Keep tracking your favorite youtube channels with less hassle |
| ファイルサイズ | 1.65 MB |
| インストール数 | 139 |
| 現在のバージョン | 1.4.5 |
| 最終更新日 | 2022-11-12 |
| 公開日 | 2021-10-02 |
| 開発者 | AXeL-dev |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/AXeL-dev/youtube-viewer |
| ヘルプページのURL | https://github.com/AXeL-dev/youtube-viewer/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "1.4.5",
"default_locale": "en",
"description": "__MSG_extensionDesc__",
"icons": {
"128": "icons\/128.png",
"256": "icons\/256.png"
},
"web_accessible_resources": [
"icons\/*.png",
"listener.js"
],
"browser_action": {
"default_icon": "icons\/128.png"
},
"options_ui": {
"page": "index.html#settings",
"open_in_tab": true
},
"background": {
"page": "index.html#background"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"static\/js\/browser-polyfill.min.js",
"content.js"
]
}
],
"author": "AXeL-dev",
"homepage_url": "https:\/\/github.com\/AXeL-dev\/youtube-viewer",
"content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com\/ https:\/\/www.youtube.com\/ https:\/\/s.ytimg.com; object-src 'self'; child-src https:\/\/www.youtube.com\/ https:\/\/s.ytimg.com",
"permissions": [
"storage",
"notifications",
"tabs",
"contextMenus"
]
} | |