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
官方網址 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"
}