Skip to content

Commit 2489973

Browse files
committed
add signed extension directory and unsigned extension zip
1 parent 2ae39b2 commit 2489973

6 files changed

Lines changed: 39 additions & 0 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Manifest-Version: 1.0
2+
3+
Name: inject.js
4+
Digest-Algorithms: MD5 SHA1
5+
MD5-Digest: smWyx4xRjcjf16hcPSMqDQ==
6+
SHA1-Digest: b2nrco3zOUBDJuyARPlsNEU8O9A=
7+
8+
Name: manifest.json
9+
Digest-Algorithms: MD5 SHA1
10+
MD5-Digest: Lg0KzlWjz7XiEJL7d7ZaPA==
11+
SHA1-Digest: /3TAazkDdAqLGI4xVOib3AN20/0=
12+
Binary file not shown.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Signature-Version: 1.0
2+
MD5-Digest-Manifest: IiKA2aoQtb4HEsrI/xxG+w==
3+
SHA1-Digest-Manifest: XSiAa+3KAgzt9ns8AcBj/raqgn0=
4+
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
((function(document) {
2+
var div = document.createElement('div');
3+
div.id = 'webextensions-selenium-example'
4+
div.textContent = "Content injected by webextensions-selenium-example";
5+
document.body.appendChild(div);
6+
})(document))
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"manifest_version": 2,
3+
"name": "webextensions-selenium-example",
4+
"description": "Inject a div with id webextensions-selenium-example to verify that WebExtensions work in Firefox/Selenium" ,
5+
"version": "0.1",
6+
"content_scripts": [
7+
{
8+
"matches": ["https://*/*","http://*/*"],
9+
"js": ["inject.js"]
10+
}
11+
],
12+
"applications": {
13+
"gecko": {
14+
15+
}
16+
}
17+
}
1.03 KB
Binary file not shown.

0 commit comments

Comments
 (0)