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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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"
    }
}