diff --git a/README.md b/README.md index 68984e1..682976c 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,7 @@ Markdown (.md) file viewer [WebExtension](https://developer.mozilla.org/en-US/Ad * Run `build.bat` (Windows) or `build.sh` (Linux) * Uses [web-ext](https://github.com/mozilla/web-ext/) which requires [nodejs](https://nodejs.org/) with npm. -Firefox won't install the generated .zip unless it's signed by Mozilla; you have to test from the staging folder. - -## Testing +## Test +* (Firefox won't install the generated .zip unless it's signed by Mozilla; you can test from the staging folder.) * Navigate to the staging folder and run `web-ext run`. * Or install `staging/manifest.json` [temporarily in Firefox](https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Temporary_Installation_in_Firefox). diff --git a/lib/sss/sss.css b/lib/sss/sss.css index 695c534..a37eeb0 100644 --- a/lib/sss/sss.css +++ b/lib/sss/sss.css @@ -3,7 +3,6 @@ body { font-family: 'Segoe UI', 'Lucida Grande', Helvetica, sans-serif; line-height: 1.5; margin: 2em; - //max-width: 800px; // Ick } h1, h2, h3, h4, h5, h6 { diff --git a/manifest.json b/manifest.json index 9b8c5cd..7fa57a6 100644 --- a/manifest.json +++ b/manifest.json @@ -1,9 +1,9 @@ { "manifest_version": 2, - "name": "markdown-viewer", - "version": "1.0", - "description": "Displays markdown documents beautified.", + "name": "markdown-viewer-webext", + "version": "1.0.1", "homepage_url": "https://github.com/KeithLRobertson/markdown-viewer", + "description": "Displays markdown documents beautified.\n\nMarkdown is a lightweight markup language which uses plain text to describe formatting information, such as # Heading, 1. numbered list, *bold*, etc. This add-on identifies markdown documents by the extension in the URL (.md, .markdown, etc.). When you navigate to a markdown document, if the content is plain text, this add-on formats it into HTML (with headings, bold text, etc.) as described in the document and displays it directly in your browser.\n\nA markdown document can contain Unicode characters, but it must begin with a Byte Order Marker for those characters to display correctly.", "permissions": [ "activeTab", "tabs", "" diff --git a/test/MarkdownSample.PNG b/test/MarkdownSample.PNG new file mode 100644 index 0000000..8664bd1 Binary files /dev/null and b/test/MarkdownSample.PNG differ