Automatic Tab Opener

Enables the user to set specific times to open a tab for a specific URL with options of closing automatically the tab when complete

什么是Automatic Tab Opener?

Automatic Tab Opener是由no0law1开发的Chrome扩展程序,该扩展的主要功能是“Enables the user to set specific times to open a tab for a specific URL with options of closing automatically the tab when complete”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Automatic Tab Opener扩展crx文件

下载Automatic Tab Opener扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Our extension, "Automatic Tab Opener" allows you to automate the opening of multiple URLs based on a cron expression or predefined intervals (e.g., daily, hourly, every minute).

Simply input the URLs you want to open and specify the frequency at which they should be opened. The cron expression follows the standard format, with the ability to specify minute, hour, day of the month, month, and day of the week. For example, to open the URLs every day at 8am, you would enter "0 8 * * *". Or, you can choose one of the predefined intervals (e.g., daily, hourly, every minute) from the dropdown menu. The extension will then open the specified URLs at the specified frequency, saving you time and effort in manually opening them yourself.

With "Automatic Tab Opener" you can streamline your daily tasks and focus on more important things.                    

扩展基本信息

名称 Automatic Tab Opener Automatic Tab Opener
ID hkjobkeceflhccchhjkfofhbcaaaccag
官方URL https://chromewebstore.google.com/detail/automatic-tab-opener/hkjobkeceflhccchhjkfofhbcaaaccag
简介 Enables the user to set specific times to open a tab for a specific URL with options of closing automatically the tab when complete
文件大小 24.18 KB
安装次数 1,820
当前版本 0.0.8
更新时间 2023-12-08
上架时间 2022-09-13
评分 4.00/5 共10次评分
开发者 no0law1
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.instanceof.dev/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "developer": {
        "name": "Nuno Reis",
        "url": "https:\/\/www.instanceof.dev"
    },
    "name": "Automatic Tab Opener",
    "description": "Enables the user to set specific times to open a tab for a specific URL with options of closing automatically the tab when complete",
    "version": "0.0.8",
    "minimum_chrome_version": "92",
    "options_page": "options.html",
    "background": {
        "service_worker": "assets\/js\/background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "alarms",
        "background",
        "tabs"
    ],
    "icons": {
        "16": "assets\/icons\/icon.png",
        "32": "assets\/icons\/icon.png",
        "48": "assets\/icons\/icon.png",
        "128": "assets\/icons\/icon.png"
    }
}