metaTaber
Perform various tasks on your current tab.
metaTaberคืออะไร?
metaTaber เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://metacular.net และคุณลักษณะหลักของมันคือ "Perform various tasks on your current tab."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย metaTaber
ดาวน์โหลดไฟล์ส่วนขยาย metaTaber ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Whenever you resize the screen, a tooltip will display in the upper right corner with the sizes of the screen and the window. If you click the browser icon, your current tab will turn into a popup window. If you press Alt+P, your current tab will toggle between being pinned. If you press Alt+K or Alt+J, the last number in the URL will increment or decrement (e.g. "page01.htm" becomes "page02.htm"). If you press Alt+Y while on YouTube, it will toggle between an embedded (pseudo-full-screen) video.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | metaTaber |
ID | bfobjnddngabheobmidmdifcfaifjpbb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/metataber/bfobjnddngabheobmidmdifcfaifjpbb |
คำอธิบาย | Perform various tasks on your current tab. |
ขนาดไฟล์ | 150 KB |
จำนวนการติดตั้ง | 9 |
เวอร์ชันปัจจุบัน | 13.418 |
อัปเดตครั้งล่าสุด | 2013-04-18 |
วันที่เผยแพร่ | 2013-04-18 |
ผู้พัฒนา | https://metacular.net |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "browser_action": { "default_icon": "icon016.png", "default_title": "Open the current tab as a popup" }, "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Perform various tasks on your current tab.", "commands": { "embedtube": { "description": "Toggle YouTube Embedding", "suggested_key": { "default": "Alt+Y" } }, "incrementurl": { "description": "Increment URL", "suggested_key": { "default": "Alt+K" } }, "decrementurl": { "description": "Decrement URL", "suggested_key": { "default": "Alt+J" } }, "pintoggle": { "description": "Toggle pinned state of current tab", "suggested_key": { "default": "Alt+P" } } }, "background": { "scripts": [ "popup.js", "commands.js" ] }, "name": "metaTaber", "permissions": [ "tabs" ], "icons": { "48": "icon048.png", "128": "icon128.png", "16": "icon016.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "sizetip.js" ], "run_at": "document_end", "css": [ "sizetip.css" ] } ], "manifest_version": 2, "version": "13.418" } |