Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Commit

Permalink
Working initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
manojVivek committed Aug 17, 2018
0 parents commit 8cb40d3
Show file tree
Hide file tree
Showing 19 changed files with 6,902 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"presets": [
"env"
]
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.DS_Store
dist/
node_modules
Binary file added designs/logo.gvdesign
Binary file not shown.
Binary file added designs/screenshot_comparison.gvdesign
Binary file not shown.
33 changes: 33 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "Medium Unlimited: Unlimited articles for free",
"description": "Unlocks medium.com for unlimited reads, no membership required",
"short_name": "Medium Unlimited",
"version": "1.1",
"manifest_version": 2,
"background": {
"scripts": ["background.bundle.js"]
},
"browser_action": {
"default_icon": "static/logo_128.png",
"default_title": "Unlock Medium.com Article"
},
"content_scripts": [
{
"matches": [
"http://www.medium.com/*",
"https://medium.com/*",
"http://medium.com/*",
"https://www.medium.com/*"
],
"js": ["main.bundle.js"]
}
],
"icons": {
"16": "static/logo_16.png",
"48": "static/logo_48.png",
"128": "static/logo_128.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": ["webRequest", "webRequestBlocking", "https://medium.com/*"],
"web_accessible_resources": ["static/*"]
}
Loading

0 comments on commit 8cb40d3

Please sign in to comment.