forked from SeleniumHQ/seleniumhq.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
75 additions
and
50 deletions.
There are no files selected for viewing
Binary file modified
BIN
+3.27 KB
(170%)
examples/dotnet/SeleniumDocs/Extensions/webextensions-selenium-example.xpi
Binary file not shown.
25 changes: 15 additions & 10 deletions
25
examples/dotnet/SeleniumDocs/Extensions/webextensions-selenium-example/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
{ | ||
"manifest_version": 2, | ||
"manifest_version": 3, | ||
"name": "webextensions-selenium-example", | ||
"description": "Inject a div with id webextensions-selenium-example to verify that WebExtensions work in Firefox/Selenium" , | ||
"description": "Inject a div with id webextensions-selenium-example to verify that WebExtensions work in Firefox/Selenium", | ||
"version": "0.1", | ||
"content_scripts": [ | ||
{ | ||
"matches": ["https://*/*","http://*/*"], | ||
"js": ["inject.js"] | ||
"matches": [ | ||
"https://*/*", | ||
"http://*/*" | ||
], | ||
"js": [ | ||
"inject.js" | ||
] | ||
} | ||
], | ||
"applications": { | ||
"gecko": { | ||
"id": "[email protected]" | ||
} | ||
} | ||
} | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "webextensions-selenium-example-v3@example.com" | ||
} | ||
} | ||
} |
Binary file modified
BIN
+3.27 KB
(170%)
examples/java/src/test/resources/extensions/selenium-example.xpi
Binary file not shown.
25 changes: 15 additions & 10 deletions
25
examples/java/src/test/resources/extensions/selenium-example/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
{ | ||
"manifest_version": 2, | ||
"manifest_version": 3, | ||
"name": "webextensions-selenium-example", | ||
"description": "Inject a div with id webextensions-selenium-example to verify that WebExtensions work in Firefox/Selenium" , | ||
"description": "Inject a div with id webextensions-selenium-example to verify that WebExtensions work in Firefox/Selenium", | ||
"version": "0.1", | ||
"content_scripts": [ | ||
{ | ||
"matches": ["https://*/*","http://*/*"], | ||
"js": ["inject.js"] | ||
"matches": [ | ||
"https://*/*", | ||
"http://*/*" | ||
], | ||
"js": [ | ||
"inject.js" | ||
] | ||
} | ||
], | ||
"applications": { | ||
"gecko": { | ||
"id": "[email protected]" | ||
} | ||
} | ||
} | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "webextensions-selenium-example-v3@example.com" | ||
} | ||
} | ||
} |
Binary file modified
BIN
+3.27 KB
(170%)
examples/javascript/test/resources/extensions/selenium-example.xpi
Binary file not shown.
25 changes: 15 additions & 10 deletions
25
examples/javascript/test/resources/extensions/selenium-example/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
{ | ||
"manifest_version": 2, | ||
"manifest_version": 3, | ||
"name": "webextensions-selenium-example", | ||
"description": "Inject a div with id webextensions-selenium-example to verify that WebExtensions work in Firefox/Selenium" , | ||
"description": "Inject a div with id webextensions-selenium-example to verify that WebExtensions work in Firefox/Selenium", | ||
"version": "0.1", | ||
"content_scripts": [ | ||
{ | ||
"matches": ["https://*/*","http://*/*"], | ||
"js": ["inject.js"] | ||
"matches": [ | ||
"https://*/*", | ||
"http://*/*" | ||
], | ||
"js": [ | ||
"inject.js" | ||
] | ||
} | ||
], | ||
"applications": { | ||
"gecko": { | ||
"id": "[email protected]" | ||
} | ||
} | ||
} | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "webextensions-selenium-example-v3@example.com" | ||
} | ||
} | ||
} |
Binary file modified
BIN
+3.27 KB
(170%)
examples/python/tests/extensions/webextensions-selenium-example.xpi
Binary file not shown.
25 changes: 15 additions & 10 deletions
25
examples/python/tests/extensions/webextensions-selenium-example/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
{ | ||
"manifest_version": 2, | ||
"manifest_version": 3, | ||
"name": "webextensions-selenium-example", | ||
"description": "Inject a div with id webextensions-selenium-example to verify that WebExtensions work in Firefox/Selenium" , | ||
"description": "Inject a div with id webextensions-selenium-example to verify that WebExtensions work in Firefox/Selenium", | ||
"version": "0.1", | ||
"content_scripts": [ | ||
{ | ||
"matches": ["https://*/*","http://*/*"], | ||
"js": ["inject.js"] | ||
"matches": [ | ||
"https://*/*", | ||
"http://*/*" | ||
], | ||
"js": [ | ||
"inject.js" | ||
] | ||
} | ||
], | ||
"applications": { | ||
"gecko": { | ||
"id": "[email protected]" | ||
} | ||
} | ||
} | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "webextensions-selenium-example-v3@example.com" | ||
} | ||
} | ||
} |
Binary file modified
BIN
+3.27 KB
(170%)
examples/ruby/spec/spec_support/extensions/webextensions-selenium-example.xpi
Binary file not shown.
25 changes: 15 additions & 10 deletions
25
examples/ruby/spec/spec_support/extensions/webextensions-selenium-example/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
{ | ||
"manifest_version": 2, | ||
"manifest_version": 3, | ||
"name": "webextensions-selenium-example", | ||
"description": "Inject a div with id webextensions-selenium-example to verify that WebExtensions work in Firefox/Selenium" , | ||
"description": "Inject a div with id webextensions-selenium-example to verify that WebExtensions work in Firefox/Selenium", | ||
"version": "0.1", | ||
"content_scripts": [ | ||
{ | ||
"matches": ["https://*/*","http://*/*"], | ||
"js": ["inject.js"] | ||
"matches": [ | ||
"https://*/*", | ||
"http://*/*" | ||
], | ||
"js": [ | ||
"inject.js" | ||
] | ||
} | ||
], | ||
"applications": { | ||
"gecko": { | ||
"id": "[email protected]" | ||
} | ||
} | ||
} | ||
"browser_specific_settings": { | ||
"gecko": { | ||
"id": "webextensions-selenium-example-v3@example.com" | ||
} | ||
} | ||
} |