TracksFlow Audio Player Control
Tracksflow audio player control
What is TracksFlow Audio Player Control?
TracksFlow Audio Player Control is a Chrome extension developed by Alexander Khorin, and its main feature is "Tracksflow audio player control".
Extension Screenshots
Download TracksFlow Audio Player Control Extension CRX File
Download TracksFlow Audio Player Control extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Allows to control http://tracksflow.com playback from any tab. MORE BUTTONS: Next track button: http://goo.gl/Jnfc5 Previous track button: http://goo.gl/fO8Gz Like button: http://goo.gl/v9ldu
Extension Basic Information
Name | |
ID | ikillooeiaecnojikodjafbicjmedkkc |
Official URL | https://chrome.google.com/webstore/detail/tracksflow-audio-player-c/ikillooeiaecnojikodjafbicjmedkkc |
Description | Tracksflow audio player control |
File Size | 154 KB |
Installation Count | 163 |
Current Version | 1.2.2 |
Last Updated | 2013-05-16 |
Publish Date | 2013-05-16 |
Rating | 4.67/5 Total 18 Ratings |
Developer | Alexander Khorin |
Payment Type | free |
Extension Website | http://khor.in/ |
Supported Languages | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TracksFlow Audio Player Control", "description": "Tracksflow audio player control", "version": "1.2.2", "manifest_version": 2, "default_locale": "en", "permissions": [ "*:\/\/tracksflow.com\/*", "*:\/\/*.tracksflow.com\/*", "tabs", "storage" ], "background": { "scripts": [ "common.js", "background.js" ] }, "browser_action": { "default_icon": "icons\/dark\/tracksflow.png", "default_title": "TracksFlow Play\/Pause" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "*:\/\/tracksflow.com\/*", "*:\/\/*.tracksflow.com\/*" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "inject.js" ], "options_page": "options\/options.html", "sandbox": { "pages": [ "options\/tmpl.html" ] }, "icons": { "16": "icons\/16.png", "24": "icons\/24.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "commands": { "tracksflow-play_pause": { "description": "TracksFlow Play", "suggested_key": { "default": "Alt+P" } }, "tracksflow-next": { "description": "TracksFlow Next", "suggested_key": { "default": "Alt+N" } }, "tracksflow-prev": { "description": "TracksFlow Prev", "suggested_key": { "default": "Alt+B" } }, "tracksflow-like": { "description": "TracksFlow Like", "suggested_key": { "default": "Alt+L" } } } } |