Tab Position Options

Tab Position Options

Tab Position Options란 무엇입니까?

Tab Position Options은(는) 安東邦泰에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tab Position Options"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Tab Position Options 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Tab Position Options empowers the user to select the tab order.
It is possible to select the tab opening position, the new tab behavior and the behavior after closing a tab in the Chrome browser.
  

No ads, no spyware.


v5.6 bugfix
v5.3
added--------------
  External Links
    Force Background Tab (Page URL)
    Force Background Tab (A tag href)


v5.0
added--------------
  Activate Tab After Tab Closing
  source tab


v3.0
added--------------
  Loading Page
  

v2.0
added--------------
  Force Current Tab
  Force New Tab




-------------------
available options
-------------------
   
Tab Opening Position.
   
Activate Tab After Tab Closing.
   
New Tab background.
   
Open pop-up window as new tab.

External Links in New Tab



-------------------
Keyboard Shortcuts

Alt + t Sort tab (title)
Alt + u Sort tab (url)
Alt+c = Switch between current and last active tab  



----Change keyboard shortcut keys---

Just open the extensions page
scroll to the bottom of the page and click "Configure commands".                    

확장 프로그램 기본 정보

이름 Tab Position Options Tab Position Options
ID fjccjnfkdkdmjohojoggodkigkjkkjhl
공식 URL https://chromewebstore.google.com/detail/tab-position-options/fjccjnfkdkdmjohojoggodkigkjkkjhl
설명 Tab Position Options
파일 크기 25.16 KB
설치 횟수 70,000
현재 버전 5.6
최근 업데이트 2015-11-24
출시 날짜 2015-11-24
평점 4.37/5 총 130 개의 평점
개발자 安東邦泰
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Position Options",
    "description": "Tab Position Options",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "contentscript.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "commands": {
        "myCommandSORTTABTITLE": {
            "suggested_key": {
                "default": "Alt+T"
            },
            "description": "Send tab sort command"
        },
        "myCommandSORTTABURL": {
            "suggested_key": {
                "default": "Alt+U"
            },
            "description": "Send tab sort command"
        },
        "myCommandCRNT2ACT": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Send tab sort command"
        }
    },
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "minimum_chrome_version": "22",
    "permissions": [
        "tabs",
        "storage",
        "webNavigation"
    ],
    "version": "5.6"
}