Open Selected Links
Opens selected links in new tabs using the context menu.
Open Selected Links란 무엇입니까?
Open Selected Links은(는) Mattes Groeger에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Opens selected links in new tabs using the context menu."입니다.
확장 프로그램 스크린샷
Open Selected Links 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features ------------- * Open all links within a selection as new tabs * Context menu – no annoying icon in the chrome bar :) * Filter links for images, videos or audio * See the first 10 link urls * Finds html links as well as plain urls How to use ----------------- After installation make sure to restart the browser or reload the websites. Select some part of a webpage that contains links. Right click and choose 'Open selected links' -> 'All' from the context menu. They will now open to the right of your current tab. The context menu shows you how many pages will be opened. It also shows the first 10 urls. Changes ------------- 1.0.5 * Added: Hungarian localization (hu) 1.0.4 * Added: Support for local files (file:///) 1.0.3 * Added: Brazilian portuguese localization (pt_BR) 1.0.2: * Fixed: Extension still works after browser restart 1.0.1: * Bugfixes Feedback --------------- Feedback is very welcome. Bugs and feature requests can be posted here: https://github.com/MattesGroeger/chrome-open-links/issues This extension is completely open source. You can check the code and contribute: https://github.com/MattesGroeger/chrome-open-links ENJOY!
확장 프로그램 기본 정보
이름 | |
ID | cbmiafnaglmnkhnohfdkdgaohdhndkjp |
공식 URL | https://chrome.google.com/webstore/detail/open-selected-links/cbmiafnaglmnkhnohfdkdgaohdhndkjp |
설명 | Opens selected links in new tabs using the context menu. |
파일 크기 | 25.67 KB |
설치 횟수 | 10,000 |
현재 버전 | 1.0.5 |
최근 업데이트 | 2014-05-28 |
출시 날짜 | 2014-05-28 |
평점 | 3.57/5 총 69 개의 평점 |
개발자 | Mattes Groeger |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://mattesgroeger.github.com/chrome-open-links |
도움말 페이지 URL | https://github.com/MattesGroeger/chrome-open-links/issues |
지원되는 언어 | de,en,hu,pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_product_name__", "version": "1.0.5", "manifest_version": 2, "default_locale": "en", "description": "__MSG_product_description__", "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "permissions": [ "contextMenus", "tabs" ], "background": { "scripts": [ "build\/links.min.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "js": [ "build\/link_grabber.min.js", "build\/content.min.js" ] } ] } |