Page and Extension Refresh

This Chrome extension allows you to input the Match Patterns (https://developer.chrome.com/extensions/match_patterns.html) of pages…

Page and Extension Refreshคืออะไร?

Page and Extension Refresh เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gsingh93 และคุณลักษณะหลักของมันคือ "This Chrome extension allows you to input the Match Patterns (https://developer.chrome.com/extensions/match_patterns.html) of pages…"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Page and Extension Refresh

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

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

                        This Chrome extension allows you to input the Match Patterns (https://developer.chrome.com/extensions/match_patterns.html) of pages and select unpacked extensions that will be refreshed after clicking the extension icon. This is not an extension to auto refresh pages after a certain interval, and nor will that feature be added. There are many extensions in the Chrome store that have that functionality.

Note that the extension uses Match Patterns and not regular URLs. You must have the scheme (http:// or https://) and you must have a path (www.google.com/ instead of www.google.com). To select all URLs that begin with www.google.com, the URL pattern would be *://www.google.com/*.

This extension was made to speed up development of Chrome extensions. I will probably not be doing any more development on the extension itself except for bug fixes. However, I will be accepting pull requests.

This extension is open source and is hosted here: https://github.com/gsingh93/page-extension-refresh                    

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

ชื่อ Page and Extension Refresh Page and Extension Refresh
ID ichaahgapgcnefhnlmpljbjeddohppph
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/page-and-extension-refres/ichaahgapgcnefhnlmpljbjeddohppph
คำอธิบาย This Chrome extension allows you to input the Match Patterns (https://developer.chrome.com/extensions/match_patterns.html) of pages…
ขนาดไฟล์ 45.79 KB
จำนวนการติดตั้ง 52
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2013-07-30
วันที่เผยแพร่ 2013-07-30
คะแนน 3.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา gsingh93
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Page and Extension Refresh",
    "version": "1.1",
    "permissions": [
        "management",
        "tabs",
        "storage",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}