mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 14:59:12 +02:00
21 lines
504 B
JSON
21 lines
504 B
JSON
{
|
|
"id": "original-sdk-addon-id@mozilla.com",
|
|
"version": "0.1.0",
|
|
"main": "./main.js",
|
|
"name": "sdk-addon-name",
|
|
"fullName": "SDK Addon Name",
|
|
"description": "A simple SDK addon which wants to transition to a WebExtension",
|
|
"preferences": [
|
|
{
|
|
"name": "superImportantUserPref",
|
|
"title": "Super important user preference",
|
|
"type": "string",
|
|
"value": "saved superImportantUserPref value"
|
|
}
|
|
],
|
|
"engines": {
|
|
"firefox": ">= 49",
|
|
"fennec": ">= 49"
|
|
}
|
|
}
|