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

Unified Diff: chrome/test/data/extensions/error_console/runtime_and_manifest_errors/manifest.json

Issue 916243002: Enable keyboard shortcuts for chrome://extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix license comment and Rebase Created 5 years, 10 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/error_console/runtime_and_manifest_errors/manifest.json
diff --git a/chrome/test/data/extensions/error_console/runtime_and_manifest_errors/manifest.json b/chrome/test/data/extensions/error_console/runtime_and_manifest_errors/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..a9a6ff81ab2e02539cea163f620e32ebb0e4e96c
--- /dev/null
+++ b/chrome/test/data/extensions/error_console/runtime_and_manifest_errors/manifest.json
@@ -0,0 +1,23 @@
+{
+ "manifest_version": 2,
+
+ "name": "Bad Extension",
+ "description": "Uses permissions that don't exist and writes to console.",
+ "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzYmYRN+f1XPX+/kO6X+ZjVkZA8ht1Dz+bWlAKD9lueyg82gM246k27w8cj+otKgy40VcY3TPJ+dn55rEQV6J0s3vq7T6qTLrWM6xziiTdpe7TaRDO9NH+Xh1Gk6N5lVhEenPoFk2Ytj+IdkgDvrzku4WNrovpim64PNMDlT7aNYphiAk+0ZNRsGvkQ8/kzypcpgRQGBHU2qt7A/U5VjOlzU5HFCt2Hohz5sxVzD9a3s2wC/N9lwS6EhU5WUaiW/nXi45nrjDjSNevJe1eeUPO+s3WAVmkad0r68GzSxOJYY95K4Qqu3JFhD767snxIhP9XPE/SM3sXfuuxGUd0YgHwIDAQAB",
+ "version": "2.0",
+
+ "background": {
+ "scripts": [ "script.js" ]
+ },
+
+ "permissions": [
+ "awesome",
+ "coolio",
+ "gnarly",
+ "bogus",
+ "tubular",
+ "groovy",
+ "amazing",
+ "cool"
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698