native-inserter/package.json

29 lines
818 B
JSON

{
"title": "Clipboard Inserter",
"name": "clipboard-inserter",
"version": "0.0.1",
"description": "A simple addon whose purpose is to automatically insert contents of clipboard into the page",
"main": "index.js",
"author": "Yoitsumi",
"engines": {
"firefox": ">=38.0a1",
"fennec": ">=38.0a1"
},
"license": "MIT",
"keywords": [
"jetpack"
],
"preferences": [{
"name": "element-name",
"title": "Added element name",
"type": "string",
"value": "p"
}, {
"name": "container-selector",
"title": "Containing element selector",
"description": "css selector of the element which should contain added elements. If you don't know what this means leaving this as 'body' will just append at the end of the document",
"type": "string",
"value": "body"
}]
}