Separate Window

Derive an arbitrary area of a page in a separate popup window

Separate Window란 무엇입니까?

Separate Window은(는) Alek에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Derive an arbitrary area of a page in a separate popup window"입니다.

확장 프로그램 스크린샷

screenshot

Separate Window 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Select any element on the page in a separate popup window.Watch the video, play the games in a popup window, separate the informers, widgets. Save to bookmarks for quick access. For transition from the tab to the window and back you don't need to reload the page.

  How to use:
- Click on the extension icon;
- Press the "Select" button;
- Put the cursor on the item to separate.
- !IMPORTANT: Rotation the mouse wheel can increase the selection area.
- Press the left mouse button and the selected area will be displayed in a separate window.

  For next visits to the page, the previously selected item(if present) 
will be marked with an icon in the upper left corner, clicking on the object will be putting in a separate window..

  To save the location and size of the window, you must:
1. Place the window in the desired location;
2. Stretch the window to the required size;
3. Click on the 2nd button on the panel in the upper right corner;
4. Now the window will always appear in the selected location with the specified dimensions.
5. To delete the saved dimensions, press the button again;

Added features:
- take a snapshot of the selected window;
- save to bookmarks (in the folder "Separate windows");
- get a link to the window (by clicking on which, when the extension is installed, the window will automatically open). 
  If there are several identical elements on the page, the first in order will be selected.                    

확장 프로그램 기본 정보

이름 Separate Window Separate Window
ID cbgkkbaghihhnaeabfcmmglhnfkfnpon
공식 URL https://chromewebstore.google.com/detail/separate-window/cbgkkbaghihhnaeabfcmmglhnfkfnpon
설명 Derive an arbitrary area of a page in a separate popup window
파일 크기 98.43 KB
설치 횟수 95,672
현재 버전 0.9.5
최근 업데이트 2019-04-07
출시 날짜 2019-04-07
평점 4.70/5 총 317 개의 평점
개발자 Alek
이메일 [email protected]
결제 유형 free
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "minimum_chrome_version": "51",
    "name": "Separate Window",
    "short_name": "Sepwin",
    "version": "0.9.5",
    "offline_enabled": false,
    "description": "__MSG_extDesc__",
    "author": "Belousov Alexandr",
    "default_locale": "en",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "bookmarks",
        "webNavigation",
        "contextMenus",
        ""
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "js\/storage.js",
            "js\/bg_panel.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": false,
            "run_at": "document_start",
            "css": [
                "css\/icon.css"
            ],
            "js": [
                "js\/elements.js",
                "js\/common.js",
                "js\/communication.js",
                "js\/icon.js",
                "js\/newWindow.js",
                "js\/mainApp.js",
                "js\/player.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/iframe.js",
        "css\/iframe.css",
        "css\/preview.css",
        "css\/window.css",
        "css\/video.css",
        "css\/panel.css",
        "img\/back.png",
        "img\/btn_up.png",
        "img\/btn_dwn.png",
        "img\/btn_resize_on.png",
        "img\/btn_resize_off.png",
        "img\/icon.svg",
        "img\/volume.png",
        "img\/volume_off.png",
        "img\/fullscr_on.png",
        "img\/fullscr_off.png",
        "img\/camera.png",
        "img\/bookmark_on.png",
        "img\/bookmark_off.png",
        "img\/link.png",
        "img\/filters_ico.png",
        "img\/rotate.png",
        "img\/zoom.png",
        "img\/saturate.png",
        "img\/brightness.png",
        "img\/contrast.png",
        "img\/blur.png",
        "img\/reset.png",
        "img\/position.png",
        "img\/speed.svg",
        "img\/btn_player_on.png",
        "img\/btn_player_off.png",
        "img\/save_size_on.png",
        "img\/save_size_off.png",
        "img\/pip_off.png",
        "img\/pip_on.png"
    ],
    "browser_action": {
        "default_title": "Choose to separate window",
        "default_icon": "img\/icon128.png",
        "default_popup": "popup.html"
    }
}