-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmanifest.json
36 lines (36 loc) · 1.57 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "img/icons16.png",
"default_popup": "popup.html",
"default_title": "SCSCMS音乐播放器"
},
"content_scripts": [ {
"all_frames": true,
"js": [ "js/content-script.js" ],
"matches": [ "<all_urls>" ],
"run_at": "document_start"
} ],
"description": "这是一个chrome扩展程序的音乐播放器,方便在没有安装音乐软件时使用chrome浏览器听歌。可以建立播放列表,导入的歌曲可以存储,并支持播放远程音乐。github.com/scscms/scsMusic",
"homepage_url": "https://github.com/scscms/",
"icons": {
"128": "img/icons128.png",
"16": "img/icons16.png",
"48": "img/icons128.png"
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwQkx5ZaEIbFbWIcR8Qt5q25GzIIerFmYtsoaU1hSXx/fWR6A9t9WoGRpYt6KXdDLxKi7YW+qsQEJlu/aHzvk8m+Gg6DoAfhIwQU9UCDfxaal9K6Y9JFZENXVwiCV3pNiespVbiDd1PKskiAFvuP+mlO6sLkPux2vsy2ODxCDUlNsm4GktoIADlvGFpICxhmaZE8hhqyq3afpLsqhAS1k01u4sIuREB/AJnJ28/2qmYK333/prDcZ2/1lY/ZtcQBsEjXgcoSxSm9ibs2pMB9mNyKgcbVQQsinqHNzSQNfDb6kvXurkMcul56tXE+F3sYk/pNpbjhoEtX1hXAfoJkuoQIDAQAB",
"manifest_version": 2,
"name": "SCSCMS音乐播放器",
"offline_enabled": true,
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"permissions": [ "http://*/*", "https://*/*", "activeTab", "contextMenus", "notifications", "webRequest", "storage" ],
"short_name": "scsMusic",
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.0.6",
"web_accessible_resources": [ ]
}