Post Marker
This is an extension to mark new posts.
Co je Post Marker?
Post Marker je rozšíření Chrome vyvinuté developer.waieight., a jeho hlavní funkcí je „This is an extension to mark new posts.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Post Marker
Stáhněte si soubory rozšíření Post Marker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Post Marker |
ID | jcnooniekpdknmhgdcobfjibfdmamgap |
Oficiální URL | https://chromewebstore.google.com/detail/post-marker/jcnooniekpdknmhgdcobfjibfdmamgap |
Popis | This is an extension to mark new posts. |
Velikost souboru | 41.89 KB |
Počet instalací | 34 |
Aktuální Verze | 0.0.0.25 |
Poslední Aktualizace | 2024-03-03 |
Datum Vydání | 2024-02-13 |
Vývojář | developer.waieight. |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://waieight.hatenablog.jp/ |
URL Stránky Zásad Ochrany Soukromí | https://waieight.hatenablog.jp/entry/2021/03/23/180238 |
Podporované Jazyky | 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" ] } |