Firefox-UI-Fix/addon/stylesheet-api-experiment/schema.json
alstjr7375 d3b9669221 Add: Web Extension - Prototype of AGENT/USER Sheet theme
Need copy `css/`, `icons` at addon
2023-04-18 18:32:57 +09:00

56 lines
1.1 KiB
JSON

[
{
"namespace": "stylesheet",
"description": "Basic access to StyleSheetService",
"functions": [
{
"name": "load",
"type": "function",
"description": "Loads stylesheet",
"async": true,
"parameters": [
{
"name": "uri",
"type": "string"
},
{
"name": "type",
"type": "string"
}
]
},
{
"name": "unload",
"type": "function",
"description": "Unloads stylesheet",
"async": true,
"parameters": [
{
"name": "uri",
"type": "string"
},
{
"name": "type",
"type": "string"
}
]
},
{
"name": "isLoaded",
"type": "function",
"description": "Returns whether sheet is loaded",
"async": true,
"parameters": [
{
"name": "uri",
"type": "string"
},
{
"name": "type",
"type": "string"
}
]
}
]
}
]