Select filter

Filtering select items.

Select filterคืออะไร?

Select filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Filtering select items."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Select filter

ดาวน์โหลดไฟล์ส่วนขยาย Select filter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Add filter to all select boxes in page.

You must input target URL list by regular expression in option page.

ex)
^https?://127\.0\.0\.1/
  => 127.0.0.1 with HTTP/HTTPS

redmine
  => All URL of includes 'redmine'

.
  => If you want enable to all URL, you must use almighty matcher, like '.', '.*' .                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Select filter Select filter
ID cfndbgamcjlfppbehioihlpinfcheinc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/select-filter/cfndbgamcjlfppbehioihlpinfcheinc
คำอธิบาย Filtering select items.
ขนาดไฟล์ 38.8 KB
จำนวนการติดตั้ง 47
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2017-12-04
วันที่เผยแพร่ 2017-12-03
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kuwa72/chrome-extension-findname
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Select filter",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Filtering select items.",
    "homepage_url": "https:\/\/github.com\/kuwa72\/chrome-extension-findname",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "browser_action": {
        "default_icon": "icons\/icon19.png"
    },
    "permissions": [
        "tabs",
        "notifications",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    }
}