Github Filter Extension

This extension add some feature to save and delete your custom filters in issues and Pull request page on Github.

什么是Github Filter Extension?

Github Filter Extension是由jeokrang开发的Chrome扩展程序,该扩展的主要功能是“This extension add some feature to save and delete your custom filters in issues and Pull request page on Github.”。

扩展截图

screenshot

下载Github Filter Extension扩展crx文件

下载Github Filter Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Feature:
- Save, Load and Delete custom filters in browser local storage
- Support Github Enterprise

Learn more about this: 
https://github.com/CoderK/github-filter-extension                    

扩展基本信息

名称 Github Filter Extension Github Filter Extension
ID bbhcplmmihjdibppeeajmombokhcfakk
官方URL https://chromewebstore.google.com/detail/github-filter-extension/bbhcplmmihjdibppeeajmombokhcfakk
简介 This extension add some feature to save and delete your custom filters in issues and Pull request page on Github.
文件大小 27.14 KB
安装次数 11
当前版本 0.4.1
更新时间 2016-09-07
上架时间 2016-09-06
评分 5.00/5 共1次评分
开发者 jeokrang
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/CoderK/github-filter-extension
帮助页面URL https://github.com/CoderK/github-filter-extension/issues
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Filter Extension",
    "version": "0.4.1",
    "author": "CoderK ",
    "description": "This extension add some feature to save and delete your custom filters in issues and Pull request page on Github.",
    "icons": {
        "128": ".\/resources\/img\/filter_off_128.png"
    },
    "permissions": [
        "activeTab",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/dist\/app.min.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            ".\/dist\/background.min.js"
        ]
    },
    "browser_action": {
        "default_title": "Github Filter Extention",
        "default_icon": ".\/resources\/img\/filter_off_128.png"
    },
    "homepage_url": "https:\/\/github.com\/CoderK\/github-filter-extension"
}