Newsletry
Discover and read awesome newsletters. All in one place.
What is Newsletry?
Newsletry is a Chrome extension developed by https://newsletry.com, and its main feature is "Discover and read awesome newsletters. All in one place.".
Extension Screenshots
Download Newsletry Extension CRX File
Download Newsletry extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Last newsletter updates in every new tab. Find fresh newsletters tailored to your taste. Keep your inbox neat & organized.
Extension Basic Information
Name | Newsletry |
ID | hmceoehebmdjahmaeojnojgpnipcbfda |
Official URL | https://chromewebstore.google.com/detail/newsletry/hmceoehebmdjahmaeojnojgpnipcbfda |
Description | Discover and read awesome newsletters. All in one place. |
File Size | 429 KB |
Installation Count | 17 |
Current Version | 1.0 |
Last Updated | 2020-07-06 |
Publish Date | 2020-07-06 |
Developer | https://newsletry.com |
[email protected] | |
Payment Type | free |
Extension Website | https://newsletry.com/ |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Newsletry", "version": "1.0", "description": "Discover and read awesome newsletters. All in one place.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": { "16": "icon16.png", "24": "icon24.png", "32": "icon32.png" }, "default_title": "Newsletry" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "chrome_url_overrides": { "newtab": "index.html" }, "content_scripts": [ { "matches": [ "https:\/\/newsletry.com\/*" ], "js": [ "script.js" ] } ], "content_security_policy": "script-src 'self' https:\/\/newsletry.com 'unsafe-inline' 'unsafe-eval'", "permissions": [ "tabs" ] } |