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是由gsingh93開發的Chrome擴展程式,該擴展的主要功能是“This Chrome extension allows you to input the Match Patterns (https://developer.chrome.com/extensions/match_patterns.html) of pages…”。
下載Page and Extension Refresh擴展crx文件
下載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
擴展基本資訊
名稱 | |
ID | ichaahgapgcnefhnlmpljbjeddohppph |
官方網址 | 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" } } |