Acid Tabs
Auto-Grouping Magic for your Tabs
Acid Tabs란 무엇입니까?
Acid Tabs은(는) jdhayford에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Auto-Grouping Magic for your Tabs"입니다.
확장 프로그램 스크린샷
Acid Tabs 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Acid Tabs makes organizing tabs ridiculously easy by automatically grouping tabs together based on customizable rules. 🌟 Features ⚡ Live updating = Instant feedback ✳ Simple but powerful patterns for tab names 🌈 Customizable group colors 🔀 Rule based ordering of tab group layout 📁 Easy "Collapse All" groups button (or Alt + Shift + C) 📝 Bulk Edit Mode Note: Acid Tabs is an open source extension. Github repo: https://github.com/jdhayford/acid-tabs-extension IMPORTANT: If you are using an old version of chrome you will need to update your Chrome to version ~89 (check chrome://settings/help). If you have any issues, requests or questions contact me at [email protected] or ping me on twitter: https://twitter.com/hayford_jack
확장 프로그램 기본 정보
이름 | Acid Tabs |
ID | hgceopemmcmigbmhphbcgkeffommpjfc |
공식 URL | https://chromewebstore.google.com/detail/acid-tabs/hgceopemmcmigbmhphbcgkeffommpjfc |
설명 | Auto-Grouping Magic for your Tabs |
파일 크기 | 313 KB |
설치 횟수 | 10,000 |
현재 버전 | 6.5.9 |
최근 업데이트 | 2022-12-31 |
출시 날짜 | 2021-03-30 |
평점 | 4.24/5 총 49 개의 평점 |
개발자 | jdhayford |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/jdhayford/acid-tabs-extension |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Auto-Grouping Magic for your Tabs", "version": "6.5.9", "manifest_version": 3, "name": "Acid Tabs", "options_page": "options.html", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "acid-32.png" }, "icons": { "128": "acid-128.png" }, "permissions": [ "storage", "webNavigation", "tabs", "tabGroups" ], "web_accessible_resources": [ { "resources": [ "content.styles.css", "acid-128.png", "acid-32.png" ], "matches": [] } ], "content_security_policy": { "extension-pages": "script-src 'self' https:\/\/fonts.googleapis.com\/* https:\/\/*.firebaseio.com; object-src 'self'" }, "commands": { "toggle-collapse": { "suggested_key": { "default": "Alt+Shift+C" }, "description": "Toggle collapse" } } } |