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

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

Issue 593293002: Initial checkin of accessibility extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix license issues Created 6 years, 3 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/alt/manifest.json
diff --git a/ui/accessibility/extensions/alt/manifest.json b/ui/accessibility/extensions/alt/manifest.json
new file mode 100644
index 0000000000000000000000000000000000000000..5ad7bd69af053bda3da327fd6361e8765b31eb0a
--- /dev/null
+++ b/ui/accessibility/extensions/alt/manifest.json
@@ -0,0 +1,34 @@
+{
+ "name": "Replace images with alt text",
+ "version": "0.1",
+ "description": "Replace images with their alt text",
+ "background": {
+ "scripts": [ "background.js" ]
+ },
+ "commands": {
+ "example_keyboard_command": {
+ "suggested_key": {
+ "default": "Ctrl+Shift+I",
+ "mac": "Ctrl+Shift+I"
+ },
+ "description": "Replace all images with their alt text."
+ }
+ },
+ "browser_action": {
+ "default_title": "Replace all images with their alt text.",
+ "default_icon": {
+ "19": "images/icon-19.png",
+ "38": "images/icon-38.png"
+ }
+ },
+ "options_page": "options.html",
+ "permissions": [
+ "activeTab"
+ ],
+ "manifest_version": 2,
+ "web_accessible_resources": [
+ "images/speech-16.png",
+ "images/speech-missing-alt-16.png",
+ "images/statusbarButtonGlyphs.png"
+ ]
+}
« no previous file with comments | « ui/accessibility/extensions/alt/images/statusbarButtonGlyphs.png ('k') | ui/accessibility/extensions/alt/options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698