Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Jouni committed Apr 23, 2018
1 parent 1b7a5c3 commit 3a17a59
Show file tree
Hide file tree
Showing 7 changed files with 8,399 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
.cache
dist/src
node_modules
30 changes: 30 additions & 0 deletions dist/manifest.json
@@ -0,0 +1,30 @@
{
"name": "TensorFlow Image Recognition Chrome Extension",
"version": "0.1",
"description": "TensorFlow chrome extension for using pretrained MobileNet NN to analyze images on web pages!",
"homepage_url": "https://www.polarspin.com/",
"author": "Jouni Kontinen",
"permissions": [
"activeTab",
"declarativeContent",
"webRequest",
"webRequestBlocking",
"<all_urls>",
"storage",
"tabs"
],
"background": {
"scripts": ["src/background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["src/content.js"],
"all_frames": true,
"run_at": "document_start"
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"manifest_version": 2
}

0 comments on commit 3a17a59

Please sign in to comment.