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

Unified Diff: chrome/common/extensions/docs/examples/api/infobars/sandwichbar/manifest.json

Issue 923463003: [Extensions] Remove the Infobar API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments 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/common/extensions/docs/examples/api/infobars/sandwichbar/manifest.json
diff --git a/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/manifest.json b/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/manifest.json
deleted file mode 100644
index 0ebfe5cef4aa886c6bd00032125cf3c5599ecf8c..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/manifest.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "name" : "SandwichBar",
- "version" : "1.0.1",
- "description" : "Shows an infobar on pages which contain the word 'sandwich'",
- "background" : {
- "scripts": ["background.js"]
- },
- "permissions" : [ "infobars" ],
- "icons" : {
- "16" : "sandwich-16.png",
- "48" : "sandwich-48.png",
- "128" : "sandwich-128.png"
- },
- "content_scripts" : [
- {
- "matches" : [
- "http://*/*",
- "https://*/*"
- ],
- "js" : [ "contentscript.js" ],
- "run_at" : "document_idle",
- "all_frames" : false
- }
- ],
- "manifest_version": 2
-}

Powered by Google App Engine
This is Rietveld 408576698