Newsletry
Discover and read awesome newsletters. All in one place.
Co je Newsletry?
Newsletry je rozšíření Chrome vyvinuté https://newsletry.com, a jeho hlavní funkcí je „Discover and read awesome newsletters. All in one place.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Newsletry
Stáhněte si soubory rozšíření Newsletry ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
Last newsletter updates in every new tab. Find fresh newsletters tailored to your taste. Keep your inbox neat & organized.
Základní Informace o Rozšíření
Název | Newsletry |
ID | hmceoehebmdjahmaeojnojgpnipcbfda |
Oficiální URL | https://chromewebstore.google.com/detail/newsletry/hmceoehebmdjahmaeojnojgpnipcbfda |
Popis | Discover and read awesome newsletters. All in one place. |
Velikost souboru | 429 KB |
Počet instalací | 17 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2020-07-06 |
Datum Vydání | 2020-07-06 |
Vývojář | https://newsletry.com |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://newsletry.com/ |
Podporované Jazyky | 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" ] } |