Page Refresher

A simple per-tab automatic page refresher/reloader.

Page Refresher là gì?

Page Refresher là một tiện ích mở rộng Chrome được phát triển bởi Alex Nguyen, và tính năng chính của nó là "A simple per-tab automatic page refresher/reloader.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Page Refresher

Tải xuống các tệp mở rộng Page Refresher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Page Refresher Page Refresher
ID hedjdjlfiijoibijchekancllfeppchp
URL Chính Thức https://chromewebstore.google.com/detail/page-refresher/hedjdjlfiijoibijchekancllfeppchp
Mô tả A simple per-tab automatic page refresher/reloader.
Kích Thước Tệp 85.43 KB
Số Lần Cài Đặt 3,133
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2024-01-02
Ngày Phát Hành 2020-08-24
Đánh Giá 4.82/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Alex Nguyen
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/alexnguyennz/pagerefresher
Ngôn Ngữ Được Hỗ Trợ 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"
}