Medium Play.ht Player
Google Chrome extension to mount Play.ht embedded audio player to browser edge.
什么是Medium Play.ht Player?
Medium Play.ht Player是由http://ashers.work开发的Chrome扩展程序,该扩展的主要功能是“Google Chrome extension to mount Play.ht embedded audio player to browser edge.”。
扩展截图
下载Medium Play.ht Player扩展crx文件
下载Medium Play.ht Player扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Google Chrome extension that takes the Play.ht embedded audio player, mounts and floats it to the right-hand side of Medium page in the browser.
**# Feature List #**
• Mounted and always visible.
• Even appears when images are zoomed on!
**# Blogs Supported #**
• all medium.com domained blogs
• uxdesign.cc
• hackernoon.com
• codeburst.io
• thriveglobal.com
• prototypr.io
• blog.stockphoto.com
-- if you find a blog that you'd like added.
Submit an issue here: https://github.com/RedcoatAsher/float-play.ht-player/issues 扩展基本信息
| 名称 | |
| ID | flkfhmgbaimccpgkafnmilaeoamjpfik |
| 官方URL | https://chrome.google.com/webstore/detail/medium-playht-player/flkfhmgbaimccpgkafnmilaeoamjpfik |
| 简介 | Google Chrome extension to mount Play.ht embedded audio player to browser edge. |
| 文件大小 | 107 KB |
| 安装次数 | 103 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2018-06-28 |
| 上架时间 | 2018-06-28 |
| 开发者 | http://ashers.work |
| 付费类型 | free |
| 扩展官网 | https://github.com/RedcoatAsher/float-play.ht-player |
| 帮助页面URL | https://github.com/RedcoatAsher/float-play.ht-player/issues |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Medium Play.ht Player",
"version": "1.0.0",
"description": "Google Chrome extension to mount Play.ht embedded audio player to browser edge.",
"icons": {
"16": "app\/img\/16.png",
"32": "app\/img\/32.png",
"48": "app\/img\/48.png",
"128": "app\/img\/128.png"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"*:\/\/*.medium.com\/*"
],
"css": [
"app\/css\/overrides.css"
],
"js": [
"app\/js\/overrides.js"
]
},
{
"run_at": "document_start",
"matches": [
"*:\/\/*.uxdesign.cc\/*"
],
"css": [
"app\/css\/overrides.css"
],
"js": [
"app\/js\/overrides.js"
]
},
{
"run_at": "document_start",
"matches": [
"*:\/\/*.hackernoon.com\/*"
],
"css": [
"app\/css\/overrides.css"
],
"js": [
"app\/js\/overrides.js"
]
},
{
"run_at": "document_start",
"matches": [
"*:\/\/*.codeburst.io\/*"
],
"css": [
"app\/css\/overrides.css"
],
"js": [
"app\/js\/overrides.js"
]
},
{
"run_at": "document_start",
"matches": [
"*:\/\/*.thriveglobal.com\/*"
],
"css": [
"app\/css\/overrides.css"
],
"js": [
"app\/js\/overrides.js"
]
},
{
"run_at": "document_start",
"matches": [
"*:\/\/*.prototypr.io\/*"
],
"css": [
"app\/css\/overrides.css"
],
"js": [
"app\/js\/overrides.js"
]
},
{
"run_at": "document_start",
"matches": [
"*:\/\/*.stockphoto.com\/*"
],
"css": [
"app\/css\/overrides.css"
],
"js": [
"app\/js\/overrides.js"
]
}
],
"browser_action": {
"default_icon": "app\/img\/icon.png"
},
"permissions": [
"activeTab"
]
} | |