Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(505)

Unified Diff: components/test/data/autofill/automated_integration/action_recorder_extension/manifest.json

Issue 2116583004: Automated Autofill testing library + extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed nits, reduced preferences Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/test/data/autofill/automated_integration/action_recorder_extension/manifest.json
diff --git a/components/test/data/autofill/automated_integration/action_recorder_extension/manifest.json b/components/test/data/autofill/automated_integration/action_recorder_extension/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..a728edcc70aec9a3f31289e154f27689aa5638ae
--- /dev/null
+++ b/components/test/data/autofill/automated_integration/action_recorder_extension/manifest.json
@@ -0,0 +1,49 @@
+{
+ "manifest_version": 2,
+
+ "name": "Action Recorder Extension",
+ "description": "Extension to record user actions and generate autofill tests from them",
+ "version": "1.0.0",
+ "minimum_chrome_version": "50",
+
+ "icons": {
+ "16": "icons/icon_idle16.png",
+ "48": "icons/icon_idle48.png",
+ "128": "icons/icon_idle128.png"
+ },
+
+ "browser_action": {
+ "default_icon": {
+ "16": "icons/icon_idle16.png",
+ "32": "icons/icon_idle32.png"
+ },
+ "default_title": "Action Recorder",
+ "default_popup": "popup/popup.html"
+ },
+ "background": {
+ "scripts": [
+ "background/sites_to_visit.js",
+ "background/field_types.js",
+ "background/indented_string_factory.js",
+ "background/actions.js",
+ "background/action_set.js",
+ "background/action_recorder.js"
+ ],
+ "persistent": true
+ },
+ "content_scripts": [{
+ "js": [
+ "content/x_path_tools.js",
+ "content/action_handler.js"
+ ],
+ "matches": ["<all_urls>"],
+ "all_frames": true
+ }],
+ "permissions": [
+ "clipboardWrite",
+ "tabs",
+ "notifications",
+ "contextMenus",
+ "webNavigation"
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698