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

Unified Diff: ui/accessibility/extensions/colorenhancer/manifest.json

Issue 984833004: Add color enhancer as a chromium accessibility extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update to 1.1.2 Created 5 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: ui/accessibility/extensions/colorenhancer/manifest.json
diff --git a/ui/accessibility/extensions/colorenhancer/manifest.json b/ui/accessibility/extensions/colorenhancer/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..8faff9dbc1f0da61057d046fd889ff5c347ecdf0
--- /dev/null
+++ b/ui/accessibility/extensions/colorenhancer/manifest.json
@@ -0,0 +1,43 @@
+{
+ "name": "__MSG_COLOR_ENHANCER_APPNAME__",
+ "version": "1.1.2",
+ "description": "__MSG_COLOR_ENHANCER_APPDESC__",
+ "manifest_version": 2,
+ "icons": {
+ "16": "res/cvd-16.png",
+ "48": "res/cvd-48.png",
+ "128": "res/cvd-128.png"
+ },
+ "permissions": [
+ "<all_urls>",
+ "tabs"
+ ],
+ "background": {
+ "scripts": [
+ "src/common.js",
+ "src/background.js"
+ ]
+ },
+ "browser_action": {
+ "default_icon": {
+ "19": "res/cvd-19.png",
+ "38": "res/cvd-38.png"
+ },
+ "default_title": "__MSG_COLOR_ENHANCER_APPNAME__",
+ "default_popup": "src/popup.html"
+ },
+ "content_scripts": [
+ {
+ "run_at": "document_start",
+ "matches": [
+ "<all_urls>"
+ ],
+ "css": [
+ "res/cvd.css"
+ ],
+ "js": [
+ "src/cvd.js"
+ ]
+ }
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698