One-Click Controls for Google Music
Control Google Music from your address bar.
Wat is One-Click Controls for Google Music?
One-Click Controls for Google Music is een Chrome-extensie ontwikkeld door Procrastinating Student, en de belangrijkste functie is "Control Google Music from your address bar.".
Extensie Screenshots
Download het CRX-bestand van de extensie One-Click Controls for Google Music
Download One-Click Controls for Google Music-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Simply click the icon in the address bar to play and pause Google Music, no matter what tab you're in! Upon installation, reload any open Google Music tabs and you'll be all set. Update: - Added options to change default account and auto-shuffle behavior, plus general bug fixes. Get the rewind button here: https://chrome.google.com/webstore/detail/jecmhknpaakaljaahcpjpojlomilfcbk Get the skip button here: https://chrome.google.com/webstore/detail/bbeefcjnjicgkpjbhdnbegckifhooeeo
Basisinformatie over de Extensie
Naam | |
ID | iplcnndnkaahamcojidocbfdagapbcal |
Officiële URL | https://chrome.google.com/webstore/detail/one-click-controls-for-go/iplcnndnkaahamcojidocbfdagapbcal |
Beschrijving | Control Google Music from your address bar. |
Bestandsgrootte | 52.2 KB |
Aantal Installaties | 42 |
Huidige Versie | 0.0.5 |
Laatst Bijgewerkt | 2017-12-06 |
Publicatiedatum | 2017-12-06 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Procrastinating Student |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "One-Click Controls for Google Music", "description": "Control Google Music from your address bar.", "version": "0.0.5", "permissions": [ "http:\/\/play.google.com\/music\/", "storage" ], "options_ui": { "page": "options.html", "chrome_style": true }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "19": "images\/no_song_19.png", "38": "images\/no_song_38.png" } }, "content_scripts": [ { "matches": [ "*:\/\/play.google.com\/music*" ], "js": [ "third-party\/jquery-1.12.0.min.js", "content_script.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "images\/no_song_19.png", "images\/no_song_38.png", "images\/play_19.png", "images\/play_38.png", "images\/pause_19.png", "images\/pause_38.png" ], "manifest_version": 2 } |