Skip to content

Commit

Permalink
adding extension to project
Browse files Browse the repository at this point in the history
  • Loading branch information
bpfarmer committed Apr 5, 2016
1 parent 5ff89da commit e455b0f
Show file tree
Hide file tree
Showing 17 changed files with 50,433 additions and 30 deletions.
Empty file added README.md
Empty file.
Binary file added extension/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions extension/jquery.js

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions extension/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"manifest_version": 2,

"name": "Getting started example",
"description": "This extension shows a Google Image search result for the current page",
"version": "1.0",

"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"webRequest",
"<all_urls>"
],
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["jquery.js", "pdf.js", "pdf.worker.js", "sha256.js", "popup.js"]
}]
}
Loading

0 comments on commit e455b0f

Please sign in to comment.