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

Unified Diff: chrome/test/data/extensions/blocked_actions/content_scripts/manifest.json

Issue 1809813002: [Extensions] Show a "refresh" bubble when needed with click-to-script (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update comment Created 4 years, 9 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/blocked_actions/content_scripts/manifest.json
diff --git a/chrome/test/data/extensions/blocked_actions/content_scripts/manifest.json b/chrome/test/data/extensions/blocked_actions/content_scripts/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..70d666bd197a4eb1495ee60b6fdab5a7f3016c02
--- /dev/null
+++ b/chrome/test/data/extensions/blocked_actions/content_scripts/manifest.json
@@ -0,0 +1,11 @@
+{
+ "name": "Blocked Actions Doc Start",
+ "description": "An extension that wants to run at document start on all urls",
+ "version": "0.1",
+ "manifest_version": 2,
+ "content_scripts": [{
+ "matches": ["<all_urls>"],
+ "run_at": "document_start",
+ "js": ["script.js"]
+ }]
+}
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | chrome/test/data/extensions/blocked_actions/content_scripts/script.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698