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

Unified Diff: chrome/test/data/extensions/api_test/messaging/interstitial_component/manifest.json

Issue 1629013002: Allow a main interstitial frame to act as an ExtensionMessagePort opener (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@extension-message-port-onDisconnect-580882
Patch Set: Remove trailing space Created 4 years, 11 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: chrome/test/data/extensions/api_test/messaging/interstitial_component/manifest.json
diff --git a/chrome/test/data/extensions/api_test/messaging/interstitial_component/manifest.json b/chrome/test/data/extensions/api_test/messaging/interstitial_component/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..118905d03ba8b3de30d41ec8017b752563719924
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/messaging/interstitial_component/manifest.json
@@ -0,0 +1,17 @@
+{
+ // chrome-extension://cjkbifkmelaolodmpimfcnmdkhbajacl
+ "key": "MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAM2aeuqUowjePgnEdjw5BXanN0jFWv/y7zXiO7SA3SAmiwOclYSM5PhoYXNI6vD9XzKCeRVb4Jo9jLdk/sYDkpMCAwEAAQ==",
+
+ "name": "Run at security interstitials",
+ "version": "1",
+ "manifest_version": 2,
+ "content_scripts": [{
+ "js": ["contentscript.js"],
+ "matches": ["<all_urls>"],
+ "include_globs": ["data:*CERTIFICATE*"]
+ }],
+ "background": {
+ "scripts": ["background.js"]
+ },
+ "permissions": ["tabs"]
+}

Powered by Google App Engine
This is Rietveld 408576698