Page Refresher

A simple per-tab automatic page refresher/reloader.

Page Refresher란 무엇입니까?

Page Refresher은(는) Alex Nguyen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple per-tab automatic page refresher/reloader."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Page Refresher 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Features:
- tab based (tab ID) reloads
- 5 customizable intervals
- refresh info table
- blocks automatic reloads or meta refreshes (per tab)
- bypass local cache (per tab)
- context menu functionality

Required Permissions:
- storage - used to store default settings and save user preferences
- contextMenus - used to enable the optional context (right click) menu for this extension
- tabs - used to get the title from each tab (to be displayed in the options page)
- activeTab - used to execute the code to block reloads
- scripting - required for block reloading feature
 
Warning: Some sites may restrict your access to them if you make too many requests (or reloads) within a short period of time.                    

확장 프로그램 기본 정보

이름 Page Refresher Page Refresher
ID hedjdjlfiijoibijchekancllfeppchp
공식 URL https://chromewebstore.google.com/detail/page-refresher/hedjdjlfiijoibijchekancllfeppchp
설명 A simple per-tab automatic page refresher/reloader.
파일 크기 85.43 KB
설치 횟수 3,133
현재 버전 2.0.0
최근 업데이트 2024-01-02
출시 날짜 2020-08-24
평점 4.82/5 총 11 개의 평점
개발자 Alex Nguyen
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/alexnguyennz/pagerefresher
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Page Refresher",
    "version": "2.0.0",
    "author": "Alex Nguyen",
    "description": "A simple per-tab automatic page refresher\/reloader.",
    "icons": {
        "16": ".\/src\/img\/logo-16.png",
        "48": ".\/src\/img\/logo-48.png",
        "128": ".\/src\/img\/logo-128.png"
    },
    "background": {
        "service_worker": "src\/js\/background.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "tabs",
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_title": "Page Refresher",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "homepage_url": "https:\/\/github.com\/alexnguyennz\/pagerefresher"
}