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" ] } |