Auto Page Opener
Automatically open web pages at scheduled times.
什么是Auto Page Opener?
Auto Page Opener是由Youth Molecule开发的Chrome扩展程序,该扩展的主要功能是“Automatically open web pages at scheduled times.”。
扩展截图
下载Auto Page Opener扩展crx文件
下载Auto Page Opener扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Schedule web pages to open automatically.
Web pages can be scheduled to be opened once at a specific time or web pages can be scheduled to be opened repeatedly on different days of the week.
Please review and email any feedback to [email protected]. 扩展基本信息
| 名称 | |
| ID | cngkdhdiifcfigdffnmibfopjdlbnpeh |
| 官方URL | https://chromewebstore.google.com/detail/auto-page-opener/cngkdhdiifcfigdffnmibfopjdlbnpeh |
| 简介 | Automatically open web pages at scheduled times. |
| 文件大小 | 17.68 KB |
| 安装次数 | 10,000 |
| 当前版本 | 1.1.1 |
| 更新时间 | 2022-06-27 |
| 上架时间 | 2020-02-07 |
| 评分 | 4.18/5 共22次评分 |
| 开发者 | Youth Molecule |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Auto Page Opener",
"version": "1.1.1",
"description": "Automatically open web pages at scheduled times.",
"permissions": [
"storage",
"background",
"tabs"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"options_page": "options.html",
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/auto_open_logo16.png",
"32": "images\/auto_open_logo32.png",
"48": "images\/auto_open_logo48.png",
"128": "images\/auto_open_logo128.png"
}
},
"icons": {
"16": "images\/auto_open_logo16.png",
"32": "images\/auto_open_logo32.png",
"48": "images\/auto_open_logo48.png",
"128": "images\/auto_open_logo128.png"
},
"minimum_chrome_version": "79",
"manifest_version": 2
} | |