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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jeokrang และคุณลักษณะหลักของมันคือ "This extension add some feature to save and delete your custom filters in issues and Pull request page on Github."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Filter Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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"
}