-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
31bf64f
commit b4b5699
Showing
18 changed files
with
7,349 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"presets": ["env", "react", "stage-2"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/*"] | ||
} |
Oops, something went wrong.