Hacker News
Displays recent stories from Hacker News
Hacker News là gì?
Hacker News là một tiện ích mở rộng Chrome được phát triển bởi adam.albrecht, và tính năng chính của nó là "Displays recent stories from Hacker News".
Ả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 Hacker News
Tải xuống các tệp mở rộng Hacker News 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
This extension displays the latest articles from Y Combinator's Hacker News (news.ycombinator.com). It also allows you to submit your current tab to Hacker News and perform a search of past Hacker News stories. Have any bugs or suggestions? Log them here: http://github.com/adamalbrecht/hacker-news-for-chrome/issues
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Hacker News |
ID | geancnifhbkbjijfkcjjdnfemppmcjmk |
URL Chính Thức | https://chromewebstore.google.com/detail/hacker-news/geancnifhbkbjijfkcjjdnfemppmcjmk |
Mô tả | Displays recent stories from Hacker News |
Kích Thước Tệp | 25.31 KB |
Số Lần Cài Đặt | 1,344 |
Phiên Bản Hiện Tại | 3.21.0 |
Cập Nhật Lần Cuối | 2020-03-11 |
Ngày Phát Hành | 2020-03-10 |
Đánh Giá | 4.56/5 Tổng số 36 Đánh Giá |
Nhà Phát Triển | adam.albrecht |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.adamalbrecht.com |
URL Trang Trợ Giúp | https://github.com/adamalbrecht/hacker-news-for-chrome |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hacker News", "version": "3.21.0", "description": "Displays recent stories from Hacker News", "icons": { "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_title": "Hacker News", "default_icon": "icon18.png", "default_popup": "popup.html" }, "background": { "page": "background.html" }, "options_page": "options.html", "permissions": [ "tabs", "https:\/\/news.ycombinator.com\/" ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/news.ycombinator.com; object-src 'self' 'unsafe-eval' https:\/\/news.ycombinator.com" } |