One-Click Controls for Google Music
Control Google Music from your address bar.
什麼是One-Click Controls for Google Music?
One-Click Controls for Google Music是由Procrastinating Student開發的Chrome擴展程式,該擴展的主要功能是“Control Google Music from your address bar.”。
擴展截圖
下載One-Click Controls for Google Music擴展crx文件
下載One-Click Controls for Google Music擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | |
ID | iplcnndnkaahamcojidocbfdagapbcal |
官方網址 | https://chrome.google.com/webstore/detail/one-click-controls-for-go/iplcnndnkaahamcojidocbfdagapbcal |
簡介 | Control Google Music from your address bar. |
檔案大小 | 52.2 KB |
安裝次數 | 42 |
目前版本 | 0.0.5 |
更新時間 | 2017-12-06 |
上架時間 | 2017-12-06 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Procrastinating Student |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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 } |