Remu

Just for GitHub Star, view stars and organizing starred repository.

Remu là gì?

Remu là một tiện ích mở rộng Chrome được phát triển bởi zenghongtu, và tính năng chính của nó là "Just for GitHub Star, view stars and organizing starred repository.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Remu

Tải xuống các tệp mở rộng Remu dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Remu Remu
ID bajifjohhghngljcfhkbpcggafpiajdo
URL Chính Thức https://chromewebstore.google.com/detail/remu/bajifjohhghngljcfhkbpcggafpiajdo
Mô tả Just for GitHub Star, view stars and organizing starred repository.
Kích Thước Tệp 1.68 MB
Số Lần Cài Đặt 1,181
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2020-12-17
Ngày Phát Hành 2020-06-25
Đánh Giá 4.92/5 Tổng số 12 Đánh Giá
Nhà Phát Triển zenghongtu
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/zenghongtu/Remu
URL Trang Trợ Giúp https://github.com/zenghongtu/Remu/issues
URL Trang Chính Sách Bảo Mật https://github.com/zenghongtu/Remu/blob/master/privacy-policy.md
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}