Skip to content

Commit

Permalink
Make file:/// URLs work again
Browse files Browse the repository at this point in the history
  • Loading branch information
bloopletech committed Jun 23, 2016
1 parent 8816829 commit 49f1b47
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions manifest.json
@@ -1,6 +1,6 @@
{
"name": "Markdown Preview",
"version": "0.6",
"version": "0.7",
"description": "Converts and previews Markdown files to HTML right inside Chrome.",
"icons": {
"128": "images/icon.png",
Expand All @@ -14,16 +14,26 @@
"content_scripts": [
{
"matches": [
"*://*/*.md*" , "*://*/*.md",
"*://*/*.mdown*" , "*://*/*.mdown",
"*://*/*.md*" , "*://*/*.md",
"*://*/*.mdown*" , "*://*/*.mdown",
"*://*/*.markdown*", "*://*/*.markdown",
"*://*/*.markdn*" , "*://*/*.markdn",
"*://*/*.mdtext*" , "*://*/*.mdtext",
"*://*/*.mdtxt*" , "*://*/*.mdtxt",
"*://*/*.mdwn*" , "*://*/*.mdwn",
"*://*/*.mkd*" , "*://*/*.mkd",
"*://*/*.mkdn*" , "*://*/*.mkdn",
"*://*/*.text*" , "*://*/*.text"
"*://*/*.text*" , "*://*/*.text",
"file:///*.md*" , "file:///*.md",
"file:///*.mdown*" , "file:///*.mdown",
"file:///*.markdown*", "file:///*.markdown",
"file:///*.markdn*" , "file:///*.markdn",
"file:///*.mdtext*" , "file:///*.mdtext",
"file:///*.mdtxt*" , "file:///*.mdtxt",
"file:///*.mdwn*" , "file:///*.mdwn",
"file:///*.mkd*" , "file:///*.mkd",
"file:///*.mkdn*" , "file:///*.mkdn",
"file:///*.text*" , "file:///*.text"
],
"js": ["showdown.js", "markdownify.js"]
}
Expand Down

0 comments on commit 49f1b47

Please sign in to comment.