Post Marker
This is an extension to mark new posts.
Post Marker là gì?
Post Marker là một tiện ích mở rộng Chrome được phát triển bởi developer.waieight., và tính năng chính của nó là "This is an extension to mark new posts.".
Ả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 Post Marker
Tải xuống các tệp mở rộng Post Marker 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
Bookmarked Bluesky and X home screen new posts for easy viewing. Notes 1. New posts are displayed only on the home screen, list, and search of the bookmarked Bluesky and X. 2. The standard time zone for new posts changes each time you close the home screen, list, or search of the bookmarked Bluesky and X. 3. The new post may not be displayed due to changes in the specifications of Bluesky and X.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Post Marker |
ID | jcnooniekpdknmhgdcobfjibfdmamgap |
URL Chính Thức | https://chromewebstore.google.com/detail/post-marker/jcnooniekpdknmhgdcobfjibfdmamgap |
Mô tả | This is an extension to mark new posts. |
Kích Thước Tệp | 41.89 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 0.0.0.25 |
Cập Nhật Lần Cuối | 2024-03-03 |
Ngày Phát Hành | 2024-02-13 |
Nhà Phát Triển | developer.waieight. |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://waieight.hatenablog.jp/ |
URL Trang Chính Sách Bảo Mật | https://waieight.hatenablog.jp/entry/2021/03/23/180238 |
Ngôn Ngữ Được Hỗ Trợ | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Post Marker", "version": "2.0.0.25", "version_name": "0.0.0.25", "description": "__MSG_extDescription__", "default_locale": "en", "icons": { "128": "\/icon\/icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/bsky.app\/*" ], "js": [ "\/jquery\/jquery-3.7.1.min.js", "\/js\/bluemarker.js" ], "css": [ "\/css\/bluemarker.css" ], "run_at": "document_start" }, { "matches": [ "https:\/\/twitter.com\/*" ], "js": [ "\/jquery\/jquery-3.7.1.min.js", "\/js\/xmarker.js" ], "css": [ "\/css\/xmarker.css" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" }, "permissions": [ "bookmarks", "history", "management", "storage", "tabs" ] } |