Commit 10137eb3 authored by Devlin Cronin's avatar Devlin Cronin Committed by Commit Bot

[Extensions] Update more test extensions to manifest v2

Update chrome/test/data/extensions/permissions_increase/* to
manifest v2. This required changing background_page to
background.

Bug: 816679
Change-Id: I99afd26749acf1c7d8bf9b737200370de5324ba5
Reviewed-on: https://chromium-review.googlesource.com/946549Reviewed-by: default avatarIstiaque Ahmed <lazyboy@chromium.org>
Commit-Queue: Devlin <rdevlin.cronin@chromium.org>
Cr-Commit-Position: refs/heads/master@{#540704}
parent 985b44c0
{ {
"version": "1", "version": "1",
"manifest_version": 2,
"name": "Permission Test", "name": "Permission Test",
"background_page": "background.html", "background": { "page": "background.html" },
"update_url": "http://localhost/autoupdate/updates.xml" "update_url": "http://localhost/autoupdate/updates.xml"
} }
{ {
"version": "2", "version": "2",
"manifest_version": 2,
"name": "Permission Test", "name": "Permission Test",
"background_page": "background.html", "background": { "page": "background.html" },
"update_url": "http://localhost/autoupdate/updates.xml", "update_url": "http://localhost/autoupdate/updates.xml",
"permissions": [ "permissions": [
"tabs" "tabs"
......
{ {
"version": "3", "version": "3",
"manifest_version": 2,
"name": "Permission Test", "name": "Permission Test",
"background_page": "background.html", "background": { "page": "background.html" },
"update_url": "http://localhost/autoupdate/updates.xml", "update_url": "http://localhost/autoupdate/updates.xml",
"permissions": [ "permissions": [
"tabs", "management" "tabs", "management"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment