Skip to content

Commit

Permalink
Version 3
Browse files Browse the repository at this point in the history
  • Loading branch information
msafdarkhan committed Nov 13, 2020
1 parent 31bf64f commit b4b5699
Show file tree
Hide file tree
Showing 18 changed files with 7,349 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["env", "react", "stage-2"]
}
96 changes: 96 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
{
"name": "Medium Unlimited: Read paid content for free!",
"description": "Unlocks medium.com for unlimited reads, no membership required",
"short_name": "Medium Unlimited",
"version": "1.5.0",
"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": [
"https://medium.com/*",
"https://*.medium.com/*",
"https://towardsdatascience.com/*",
"https://hackernoon.com/*",
"https://medium.freecodecamp.org/*",
"https://psiloveyou.xyz/*",
"https://betterhumans.coach.me/*",
"https://codeburst.io/*",
"https://theascent.pub/*",
"https://medium.mybridge.co/*",
"https://uxdesign.cc/*",
"https://levelup.gitconnected.com/*",
"https://itnext.io/*",
"https://entrepreneurshandbook.co/*",
"https://proandroiddev.com/*",
"https://blog.prototypr.io/*",
"https://thebolditalic.com/*",
"https://blog.usejournal.com/*",
"https://blog.angularindepth.com/*",
"https://blog.bitsrc.io/*",
"https://blog.devartis.com/*",
"https://blog.maddevs.io/*",
"https://blog.getambassador.io/*",
"https://uxplanet.org/*",
"https://instagram-engineering.com/*",
"https://calia.me/*",
"https://productcoalition.com/*",
"https://engineering.opsgenie.com/*",
"https://android.jlelse.eu/*",
"https://robinhood.engineering/*",
"https://blog.hipolabs.com/*",
"https://ux.shopify.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'; object-src 'self'",
"permissions": [
"webRequest",
"webRequestBlocking",
"https://medium.com/*",
"https://towardsdatascience.com/*",
"https://hackernoon.com/*",
"https://medium.freecodecamp.org/*",
"https://psiloveyou.xyz/*",
"https://betterhumans.coach.me/*",
"https://codeburst.io/*",
"https://theascent.pub/*",
"https://*.medium.com/*",
"https://medium.mybridge.co/*",
"https://uxdesign.cc/*",
"https://levelup.gitconnected.com/*",
"https://itnext.io/*",
"https://entrepreneurshandbook.co/*",
"https://proandroiddev.com/*",
"https://blog.prototypr.io/*",
"https://thebolditalic.com/*",
"https://blog.usejournal.com/*",
"https://blog.angularindepth.com/*",
"https://blog.bitsrc.io/*",
"https://blog.devartis.com/*",
"https://blog.maddevs.io/*",
"https://blog.getambassador.io/*",
"https://uxplanet.org/*",
"https://instagram-engineering.com/*",
"https://calia.me/*",
"https://productcoalition.com/*",
"https://engineering.opsgenie.com/*",
"https://android.jlelse.eu/*",
"https://robinhood.engineering/*",
"https://blog.hipolabs.com/*",
"https://ux.shopify.com/*"
],
"web_accessible_resources": ["static/*"]
}
Loading

0 comments on commit b4b5699

Please sign in to comment.