Newsletry
Discover and read awesome newsletters. All in one place.
Newsletryとは何ですか?
Newsletryはhttps://newsletry.comによって開発されたChromeの拡張機能で、その主な機能は「Discover and read awesome newsletters. All in one place.」です。
拡張機能のスクリーンショット
Newsletry拡張機能のCRXファイルをダウンロード
Newsletry拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Last newsletter updates in every new tab. Find fresh newsletters tailored to your taste. Keep your inbox neat & organized.
拡張機能の基本情報
名前 | Newsletry |
ID | hmceoehebmdjahmaeojnojgpnipcbfda |
公式URL | https://chromewebstore.google.com/detail/newsletry/hmceoehebmdjahmaeojnojgpnipcbfda |
説明 | Discover and read awesome newsletters. All in one place. |
ファイルサイズ | 429 KB |
インストール数 | 17 |
現在のバージョン | 1.0 |
最終更新日 | 2020-07-06 |
公開日 | 2020-07-06 |
開発者 | https://newsletry.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://newsletry.com/ |
対応言語 | 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" ] } |