在浏览器里养一只A-Soul成员当宠物。
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "A-Soul 浏览器宠物",
"version": "0.0.4",
"description": "在浏览器里养一只A-Soul成员当宠物。",
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"storage"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"browser_action": {
"default_icon": {
"16": "static/icon/icon_16.png",
"32": "static/icon/icon_32.png",
"48": "static/icon/icon_48.png",
"128": "static/icon/icon_128.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"lib/jquery.min.js",
"lib/drag-on-drop.js",
"lib/anime.min.js",
"index.js"
],
"css": [
"css/style.css"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"/static/*"
],
"icons": {
"16": "static/icon/icon_16.png",
"32": "static/icon/icon_32.png",
"48": "static/icon/icon_48.png",
"128": "static/icon/icon_128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{7d67894a-52e9-4aa4-92ac-897e98280ded}"
}
}
}