Remu
Just for GitHub Star, view stars and organizing starred repository.
Wat is Remu?
Remu is een Chrome-extensie ontwikkeld door zenghongtu, en de belangrijkste functie is "Just for GitHub Star, view stars and organizing starred repository.".
Extensie Screenshots
Download het CRX-bestand van de extensie Remu
Download Remu-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | bajifjohhghngljcfhkbpcggafpiajdo |
| Officiële URL | https://chromewebstore.google.com/detail/remu/bajifjohhghngljcfhkbpcggafpiajdo |
| Beschrijving | Just for GitHub Star, view stars and organizing starred repository. |
| Bestandsgrootte | 1.68 MB |
| Aantal Installaties | 1,181 |
| Huidige Versie | 1.2.0 |
| Laatst Bijgewerkt | 2020-12-17 |
| Publicatiedatum | 2020-06-25 |
| Beoordeling | 4.92/5 Totaal 12 Beoordelingen |
| Ontwikkelaar | zenghongtu |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/zenghongtu/Remu |
| Help Pagina-URL | https://github.com/zenghongtu/Remu/issues |
| URL van de Privacybeleid Pagina | https://github.com/zenghongtu/Remu/blob/master/privacy-policy.md |
| Ondersteunde Talen | 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"
}
]
} | |