Batch Links Opener
Open links from a website in batches
Batch Links Opener란 무엇입니까?
Batch Links Opener은(는) nickweeds85에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open links from a website in batches"입니다.
확장 프로그램 스크린샷
Batch Links Opener 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Open links from a page in batches. If you have ever encountered the situation where there are many links from a page that you want to open but you have to go one by one opening them, this extension will facilitate your workflows. - Allows to select many links from a page - Completely customizable - Open in new window - Open in new tab - Avoid link from opening - Custom shortcuts - Save links to bookmarks
확장 프로그램 기본 정보
이름 | |
ID | jnidcaddmolngplnpoloipnmhpmbgikn |
공식 URL | https://chrome.google.com/webstore/detail/jnidcaddmolngplnpoloipnmhpmbgikn |
설명 | Open links from a website in batches |
파일 크기 | 480 KB |
설치 횟수 | 3,800 |
현재 버전 | 1.2.0 |
최근 업데이트 | 2022-07-19 |
출시 날짜 | 2021-06-17 |
평점 | 4.40/5 총 5 개의 평점 |
개발자 | nickweeds85 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Batch Links Opener", "description": "Open links from a website in batches", "version": "1.2.0", "icons": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "32": "icons\/icon32.png", "38": "icons\/icon38.png", "48": "icons\/icon48.png", "96": "icons\/icon96.png", "128": "icons\/icon128.png", "256": "icons\/icon256.png" }, "background": { "persistent": true, "scripts": [ "javascripts\/settings.js", "javascripts\/background.js" ] }, "browser_action": { "default_title": "Popup", "default_popup": "popup\/popup.html" }, "web_accessible_resources": [ "javascripts\/page.zIndex.js", "libraries\/vue-files\/vue.esm-browser.js", "styles\/selection.css" ], "permissions": [ "*:\/\/*\/*", "storage", "bookmarks", "tabs", "activeTab", "webRequest", "webRequestBlocking" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "javascripts\/scroll.js", "javascripts\/settings.js", "javascripts\/content-compiled.js" ], "css": [ "styles\/content.css", "styles\/fonts.css" ], "run_at": "document_start", "all_frames": true }, { "matches": [ "*:\/\/*\/*" ], "js": [ "content-scripts\/idle.js" ], "all_frames": true, "run_at": "document_idle" }, { "matches": [ "*:\/\/*\/*" ], "js": [ "content-scripts\/start.js" ], "all_frames": true, "run_at": "document_start" } ], "commands": { "reload-extension": { "description": "Reloads extension" } } } |