Tab Position Options

Tab Position Options

Tab Position Optionsคืออะไร?

Tab Position Options เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 安東邦泰 และคุณลักษณะหลักของมันคือ "Tab Position Options"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Position Options

ดาวน์โหลดไฟล์ส่วนขยาย Tab Position Options ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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