Remu
Just for GitHub Star, view stars and organizing starred repository.
Cos'è Remu?
Remu è un'estensione di Chrome sviluppata da zenghongtu, e la sua funzione principale è "Just for GitHub Star, view stars and organizing starred repository.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Remu
Scarica i file di estensione Remu in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Github Repo: https://github.com/zenghongtu/Remu
Privacy Policy: https://github.com/zenghongtu/Remu/blob/master/privacy-policy.md
## Feature
- Star history
- Show starred repositories / watching repositories(**default close**)
- Add Notes
- Set / Edit / Delete Tags
- Search by title / description / readme(**default close**)
- UnStarred Repo / Download Zip / Clone with HTTPS
- Google Account Sync Token/GistId, Gist ** Auto Sync ** tag data (default 6 second delay)
- and many more...
## Next Feature
- [ ] multi-language
- [ ] theme
- [ ] toc
- [ ] search tips
- [ ] tag custom color Informazioni di Base sull'Estensione
| Nome | |
| ID | bajifjohhghngljcfhkbpcggafpiajdo |
| URL Ufficiale | https://chromewebstore.google.com/detail/remu/bajifjohhghngljcfhkbpcggafpiajdo |
| Descrizione | Just for GitHub Star, view stars and organizing starred repository. |
| Dimensione del File | 1.68 MB |
| Conteggio Installazioni | 1,181 |
| Versione Corrente | 1.2.0 |
| Ultimo Aggiornamento | 2020-12-17 |
| Data di Pubblicazione | 2020-06-25 |
| Valutazione | 4.92/5 Totale 12 Valutazioni |
| Sviluppatore | zenghongtu |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/zenghongtu/Remu |
| URL della Pagina di Aiuto | https://github.com/zenghongtu/Remu/issues |
| URL della Pagina della Politica sulla Privacy | https://github.com/zenghongtu/Remu/blob/master/privacy-policy.md |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Just for GitHub Star, view stars and organizing starred repository.",
"version": "1.2.0",
"name": "Remu",
"short_name": "Remu",
"manifest_version": 2,
"homepage_url": "https:\/\/github.com\/zenghongtu\/",
"icons": {
"32": "32x32.png",
"64": "64x64.png",
"128": "128x128.png",
"256": "256x256.png"
},
"permissions": [
"storage",
"clipboardWrite",
"unlimitedStorage",
"activeTab",
"tabs",
"https:\/\/api.github.com\/*"
],
"browser_action": {
"default_icon": "64x64.png"
},
"options_ui": {
"page": "options.html"
},
"background": {
"page": "background.html"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*\/*"
],
"js": [
"js\/content.bundle.js"
],
"css": [
"style\/content.css"
],
"run_at": "document_start"
}
]
} | |