metaTaber
Perform various tasks on your current tab.
metaTaber란 무엇입니까?
metaTaber은(는) https://metacular.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Perform various tasks on your current tab."입니다.
확장 프로그램 스크린샷
metaTaber 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |