GithubTags

给Github项目添加标签,支持按标签搜索,支持数据云同步

GithubTags란 무엇입니까?

GithubTags은(는) xiandanin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "给Github项目添加标签,支持按标签搜索,支持数据云同步"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

GithubTags 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        如果Github网站结构有变化,可能会导致插件失效,如果发现失效请提交issues或者等待新版

Github:https://github.com/xiandanin/github-tags
反馈失效:https://github.com/xiandanin/github-tags/issues/new

如何开启云同步:https://github.com/xiandanin/github-tags#云同步                    

확장 프로그램 기본 정보

이름 GithubTags GithubTags
ID jfppflnlpiekbiglfgiajddmkiglapog
공식 URL https://chromewebstore.google.com/detail/githubtags/jfppflnlpiekbiglfgiajddmkiglapog
설명 给Github项目添加标签,支持按标签搜索,支持数据云同步
파일 크기 434 KB
설치 횟수 40
현재 버전 1.2.2
최근 업데이트 2022-04-10
출시 날짜 2020-03-09
평점 4.50/5 총 2 개의 평점
개발자 xiandanin
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/xiandanin/github-tags
도움말 페이지 URL https://github.com/xiandanin/github-tags
지원되는 언어 zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GithubTags",
    "description": "\u7ed9Github\u9879\u76ee\u6dfb\u52a0\u6807\u7b7e\uff0c\u652f\u6301\u6309\u6807\u7b7e\u641c\u7d22\uff0c\u652f\u6301\u6570\u636e\u4e91\u540c\u6b65",
    "version": "1.2.2",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "browser_action": {
        "default_title": "github-tags",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "content_scripts\/css\/element-ui.css",
                "content_scripts\/css\/global.css",
                "content_scripts\/css\/index.css"
            ],
            "js": [
                "content_scripts\/js\/vue.min.js",
                "content_scripts\/js\/axios.min.js",
                "content_scripts\/js\/element-ui.js",
                "content_scripts\/js\/pinyin_dict_firstletter.js",
                "content_scripts\/js\/pinyinUtil.js",
                "content_scripts\/js\/tag.js",
                "content_scripts\/js\/list.js",
                "content_scripts\/js\/all-tag.js",
                "content_scripts\/js\/inject.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "notifications"
    ],
    "web_accessible_resources": [
        "content_scripts\/fonts\/element-icons.woff",
        "content_scripts\/fonts\/element-icons.ttf"
    ],
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "content_security_policy": "script-src 'self'; connect-src 'self' https:\/\/gt.xiandan.in http:\/\/localhost:9000 https:\/\/*.githubusercontent.com; object-src 'self'"
}