Add simple addon
This commit is contained in:
commit
3c20d2102a
23
manifest.json
Normal file
23
manifest.json
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
|
||||
"manifest_version": 2,
|
||||
"name": "Postify",
|
||||
"version": "1.0",
|
||||
|
||||
"description": "Post current url to external web-server.",
|
||||
|
||||
"applications": {
|
||||
"gecko": {
|
||||
"id": "postify@mozilla.org",
|
||||
"strict_min_version": "45.0"
|
||||
}
|
||||
},
|
||||
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": ["*://*.mozilla.org/*"],
|
||||
"js": ["postify.js"]
|
||||
}
|
||||
]
|
||||
|
||||
}
|
1
postify.js
Normal file
1
postify.js
Normal file
@ -0,0 +1 @@
|
||||
console.log('Yeah!')
|
Loading…
x
Reference in New Issue
Block a user