StayFresh Page Refresher
An open-source extension that refreshes pages at set intervals
什么是StayFresh Page Refresher?
StayFresh Page Refresher是由Michael Goen开发的Chrome扩展程序,该扩展的主要功能是“An open-source extension that refreshes pages at set intervals”。
扩展截图
下载StayFresh Page Refresher扩展crx文件
下载StayFresh Page Refresher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Choose a single URL, or all URLs at a domain to refresh periodically depending on the chosen time. The extension remembers your settings and can have multiple URLs refreshing at once. I'm open to suggestions for new features or improvements, feel free to leave a comment in the support section. The source code can be found at my github: https://github.com/mikegoen/stayfresh-extension
扩展基本信息
名称 | StayFresh Page Refresher |
ID | fjcgdkhnikhjmijgldhfbjjnnjdfjljd |
官方URL | https://chromewebstore.google.com/detail/stayfresh-page-refresher/fjcgdkhnikhjmijgldhfbjjnnjdfjljd |
简介 | An open-source extension that refreshes pages at set intervals |
文件大小 | 101 KB |
安装次数 | 158 |
当前版本 | 1.0.0 |
更新时间 | 2017-02-26 |
上架时间 | 2017-02-26 |
评分 | 3.67/5 共3次评分 |
开发者 | Michael Goen |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "StayFresh Page Refresher", "description": "An open-source extension that refreshes pages at set intervals", "version": "1.0.0", "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "tabs", "http:\/\/*\/", "https:\/\/*\/", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": true } } |