New Tab Rotate

Alternate between your multiple new tab extensions

New Tab Rotate란 무엇입니까?

New Tab Rotate은(는) newtabrotate에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Alternate between your multiple new tab extensions"입니다.

확장 프로그램 스크린샷

New Tab Rotate 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Have more than one new tab extension that you like?
Why not both!? Why not 100!?
Automatically rotate between your installed new tab extensions every time you open a new tab. 
Or if you want to launch a specific one, just choose it from the New Tab Rotate popup.
Don't settle for just one, you deserve to use them all!                    

확장 프로그램 기본 정보

이름 New Tab Rotate New Tab Rotate
ID ahgcbolioopacfcnofmbpfebmggfbhia
공식 URL https://chrome.google.com/webstore/detail/new-tab-rotate/ahgcbolioopacfcnofmbpfebmggfbhia
설명 Alternate between your multiple new tab extensions
파일 크기 130 KB
설치 횟수 281
현재 버전 1.1.4
최근 업데이트 2021-02-14
출시 날짜 2019-12-30
평점 5.00/5 총 1 개의 평점
개발자 newtabrotate
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Tab Rotate",
    "version": "1.1.4",
    "manifest_version": 2,
    "description": "Alternate between your multiple new tab extensions",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "browser action",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "activeTab",
        "management",
        "tabs",
        "declarativeContent",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery\/jquery.js"
            ]
        }
    ]
}