Newsletry
Discover and read awesome newsletters. All in one place.
Newsletry là gì?
Newsletry là một tiện ích mở rộng Chrome được phát triển bởi https://newsletry.com, và tính năng chính của nó là "Discover and read awesome newsletters. All in one place.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Newsletry
Tải xuống các tệp mở rộng Newsletry dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Last newsletter updates in every new tab. Find fresh newsletters tailored to your taste. Keep your inbox neat & organized.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Newsletry |
ID | hmceoehebmdjahmaeojnojgpnipcbfda |
URL Chính Thức | https://chromewebstore.google.com/detail/newsletry/hmceoehebmdjahmaeojnojgpnipcbfda |
Mô tả | Discover and read awesome newsletters. All in one place. |
Kích Thước Tệp | 429 KB |
Số Lần Cài Đặt | 17 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2020-07-06 |
Ngày Phát Hành | 2020-07-06 |
Nhà Phát Triển | https://newsletry.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://newsletry.com/ |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |