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

Side by Side Diff: chrome/test/data/extensions/activity_log/execute_script_ad_injection/manifest.json

Issue 641043003: Add ActivityLog tests for chrome.tabs.executeScript() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
« no previous file with comments | « chrome/test/data/extensions/activity_log/execute_script_ad_injection/background.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "name": "Ad-Injecting Extension", 2 "name": "Ad-Injecting Extension",
3 "description": "An extension which pretends to inject ads into a page.", 3 "description": "An extension which pretends to inject ads into a page.",
4 "manifest_version": 2, 4 "manifest_version": 2,
5 "version": "2.0", 5 "version": "2.0",
6 "permissions": [ 6 "permissions": [
7 "tabs" 7 "tabs", "*://*/*"
8 ], 8 ],
9 "content_scripts": [ 9 "background": {
10 { 10 "scripts": ["background.js"]
11 "matches": ["*://*/*"], 11 }
12 "js": ["content_script.js"]
13 }
14 ]
15 } 12 }
OLDNEW
« no previous file with comments | « chrome/test/data/extensions/activity_log/execute_script_ad_injection/background.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698