GChat - Pin threads
Pin your threads to use another time
Hvad er GChat - Pin threads?
GChat - Pin threads er en Chrome-udvidelse udviklet af lasalvadordev, og dens hovedfunktion er "Pin your threads to use another time".
Udvidelsesskærmbilleder
Download GChat - Pin threads-udvidelses-CRX-fil
Download GChat - Pin threads-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
An Extension to pin your threads on google chat. With this package you can click on the "Pin Your Thread" button and we save the thread's link with a name of your preference and you can easily access this thread when you want. You can remove the Pinned thread when you want clickingin the "X" button.
Grundlæggende oplysninger om udvidelsen
Navn | GChat - Pin threads |
ID | indkckjhobpnbgkjbppehhihfpdmcjon |
Officiel URL | https://chromewebstore.google.com/detail/gchat-pin-threads/indkckjhobpnbgkjbppehhihfpdmcjon |
Beskrivelse | Pin your threads to use another time |
Filstørrelse | 8.93 KB |
Antal Installationer | 498 |
Nuværende Version | 1.0.5 |
Senest Opdateret | 2022-08-11 |
Udgivelsesdato | 2022-02-14 |
Bedømmelse | 3.50/5 Samlet 2 Bedømmelser |
Udvikler | lasalvadordev |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GChat - Pin threads", "description": "Pin your threads to use another time", "action": { "default_icon": ".\/images\/logo.png", "default_popup": ".\/popup\/index.html" }, "content_scripts": [ { "matches": [ "https:\/\/chat.google.com\/*", "https:\/\/mail.google.com\/chat\/*" ], "all_frames": true, "js": [ ".\/scripts\/content.js" ], "css": [ ".\/styles\/styles.css" ], "run_at": "document_end" } ], "permissions": [ "storage" ], "version": "1.0.5" } |