Search Play Music from Youtube
When watching a music video on Youtube, a link to Google Play Music search is included. Great for All Access customers.
什么是Search Play Music from Youtube?
Search Play Music from Youtube是由mani开发的Chrome扩展程序,该扩展的主要功能是“When watching a music video on Youtube, a link to Google Play Music search is included. Great for All Access customers.”。
扩展截图
下载Search Play Music from Youtube扩展crx文件
下载Search Play Music from Youtube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds a link to Google Play Music search, under Youtube music videos so that you can directly access, listen and buy the track from Play Music. Useful for users with All Access service.
扩展基本信息
名称 | |
ID | kimbipeccekllapofjffiphlhlakiooh |
官方URL | https://chrome.google.com/webstore/detail/search-play-music-from-yo/kimbipeccekllapofjffiphlhlakiooh |
简介 | When watching a music video on Youtube, a link to Google Play Music search is included. Great for All Access customers. |
文件大小 | 9.55 KB |
安装次数 | 1,000 |
当前版本 | 0.0.1 |
更新时间 | 2015-02-19 |
上架时间 | 2015-02-19 |
评分 | 3.00/5 共2次评分 |
开发者 | mani |
付费类型 | free |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Search Play Music from Youtube", "description": "When watching a music video on Youtube, a link to Google Play Music search is included. Great for All Access customers.", "version": "0.0.1", "background": { "persistant": true, "page": "background.html" }, "permissions": [ "tabs", "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |