Medium Play.ht Player
Google Chrome extension to mount Play.ht embedded audio player to browser edge.
Qu'est-ce que Medium Play.ht Player ?
Medium Play.ht Player est une extension Chrome développée par http://ashers.work, et sa fonction principale est "Google Chrome extension to mount Play.ht embedded audio player to browser edge.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Medium Play.ht Player
Téléchargez les fichiers d'extension Medium Play.ht Player au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | flkfhmgbaimccpgkafnmilaeoamjpfik |
URL Officiel | https://chrome.google.com/webstore/detail/medium-playht-player/flkfhmgbaimccpgkafnmilaeoamjpfik |
Description | Google Chrome extension to mount Play.ht embedded audio player to browser edge. |
Taille du Fichier | 107 KB |
Nombre d'Installations | 103 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2018-06-28 |
Date de Publication | 2018-06-28 |
Développeur | http://ashers.work |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/RedcoatAsher/float-play.ht-player |
URL de la Page d'Aide | https://github.com/RedcoatAsher/float-play.ht-player/issues |
Langues Prises en Charge | 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" ] } |