Post Marker
This is an extension to mark new posts.
Post Markerとは何ですか?
Post Markerはdeveloper.waieight.によって開発されたChromeの拡張機能で、その主な機能は「This is an extension to mark new posts.」です。
拡張機能のスクリーンショット
Post Marker拡張機能のCRXファイルをダウンロード
Post Marker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Post Marker |
ID | jcnooniekpdknmhgdcobfjibfdmamgap |
公式URL | https://chromewebstore.google.com/detail/post-marker/jcnooniekpdknmhgdcobfjibfdmamgap |
説明 | This is an extension to mark new posts. |
ファイルサイズ | 41.89 KB |
インストール数 | 34 |
現在のバージョン | 0.0.0.25 |
最終更新日 | 2024-03-03 |
公開日 | 2024-02-13 |
開発者 | developer.waieight. |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://waieight.hatenablog.jp/ |
プライバシーポリシーページのURL | https://waieight.hatenablog.jp/entry/2021/03/23/180238 |
対応言語 | 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" ] } |