Remu

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

什麼是Remu?

Remu是由zenghongtu開發的Chrome擴展程式,該擴展的主要功能是“Just for GitHub Star, view stars and organizing starred repository.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Remu擴展crx文件

下載Remu擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Remu Remu
ID bajifjohhghngljcfhkbpcggafpiajdo
官方網址 https://chromewebstore.google.com/detail/remu/bajifjohhghngljcfhkbpcggafpiajdo
簡介 Just for GitHub Star, view stars and organizing starred repository.
檔案大小 1.68 MB
安裝次數 1,181
目前版本 1.2.0
更新時間 2020-12-17
上架時間 2020-06-25
評分 4.92/5 共 12 次評分
開發者 zenghongtu
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/zenghongtu/Remu
說明頁面URL https://github.com/zenghongtu/Remu/issues
隱私政策頁面URL https://github.com/zenghongtu/Remu/blob/master/privacy-policy.md
支援的語言 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"
        }
    ]
}