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

Unified Diff: chrome/browser/resources/identity_api_ui/manifest.json

Issue 14081014: Identity API: Change WebAuthFlow to use <webview> instead of a normal browser pop-up. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: chrome.identity side-by-side with chrome.experimental.identity Created 7 years, 7 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/browser/resources/identity_api_ui/manifest.json
diff --git a/chrome/browser/resources/identity_api_ui/manifest.json b/chrome/browser/resources/identity_api_ui/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..3126d5a141c44c0a93eefde9858919490e471b22
--- /dev/null
+++ b/chrome/browser/resources/identity_api_ui/manifest.json
@@ -0,0 +1,24 @@
+{
+ // chrome-extension://ahjaciijnoiaklcomgnblndopackapon
+ "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDNyyvaNmqNZsjBwes4YNlrsy64asdP710pdMUM27jtvOe2YkXUdvglcC6r2ihlvPg16mjYK+ZmvxchcEu497KUPqBq34jXILabiUuXLrQJlvl3A7QMLatuZlijSx1qXL/5w5/ggF2Tblo9SHSVtlVyhwyyGkT9ckga5erBUbbwkQIDAQAB",
+ "name": "Identity API UI",
+ "version": "1.0",
+ "manifest_version": 2,
+ "description": "Identity API Component App",
+
+ "permissions": [
+ "identityPrivate",
+ "webview",
+ "https://*/"
+ ],
+
+ "app": {
+ "background": {
+ "scripts": [
+ "identity_api_ui.js"
+ ]
+ }
+ },
+ "display_in_launcher": false,
+ "display_in_new_tab_page": false
+}

Powered by Google App Engine
This is Rietveld 408576698