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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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" } } |