Skip to content

Commit

Permalink
2
Browse files Browse the repository at this point in the history
  • Loading branch information
msafdarkhan committed Nov 13, 2020
1 parent 58b125f commit 31bf64f
Show file tree
Hide file tree
Showing 12 changed files with 125 additions and 0 deletions.
1 change: 1 addition & 0 deletions Medium Chrome Extension Code/background.bundle.js

Large diffs are not rendered by default.

Empty file.
27 changes: 27 additions & 0 deletions Medium Chrome Extension Code/main.bundle.js

Large diffs are not rendered by default.

96 changes: 96 additions & 0 deletions Medium Chrome Extension Code/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.4.17",
"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' 'unsafe-eval'; 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/*"]
}
Binary file added Medium Chrome Extension Code/static/.DS_Store
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Medium Chrome Extension Code/static/loader.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions Medium Chrome Extension Code/static/loader.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Medium Chrome Extension Code/static/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Medium Chrome Extension Code/static/logo_128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Medium Chrome Extension Code/static/logo_16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Medium Chrome Extension Code/static/logo_48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 31bf64f

Please sign in to comment.