Flexpad

Select a text and open a Wikipedia pop up right inside your page, support Google Translation and Oxford Dictionaries

Flexpad란 무엇입니까?

Flexpad은(는) Quang Dinh Bui에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Select a text and open a Wikipedia pop up right inside your page, support Google Translation and Oxford Dictionaries"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Wikipedia, Google Translation, and Oxford Dictionaries are all in one. Easy to use, you select a term that you want to know either what it is on Wikipedia, what it's meaning in your language, or what definitions of a word, Flexpad will be popped up right inside your page to provide you all of what you want, no more managing a hundred of tabs.

- NEW FEATURE: Now support Highlighter with vary beautiful colors. You can manage your highlights either in the page or in Flexpad. If you revisit the page, your highlight is there for you. 
- Note: Highlighter will try to recover all of your highlights, highlighter will not working properly on dynamic website (content of the web is rendered dynamically). But, don't worry, most of websites nowadays are static websites.
- Note: Flexpad doesn't save or transfer any of your personal data on any servers or any third-parties services. Flexpad only save your highlight data locally (which means on your computer). If you uninstall Flexpad, all of your data will be wiped out.

Updated Log:
- [1/8/2021] Added a quick menu when selecting a text.
- Fixed UI. I realized the font size will be changed unintentionally which is so small, now the problem is fixed.
- The Flexpad will automatically be placed at the default position if it is out of the viewport.
- For Oxford Dictionaries, I moved the Definition section up to top, now it is much easier to look at the definitions of the word quickly. I also removed some annoying text in Oxford section to help you focusing on what you really need to see.
- Hope you enjoy it!                    

확장 프로그램 기본 정보

이름 Flexpad Flexpad
ID ogbhdnddnhiighjaghiopiincnmhknba
공식 URL https://chromewebstore.google.com/detail/flexpad/ogbhdnddnhiighjaghiopiincnmhknba
설명 Select a text and open a Wikipedia pop up right inside your page, support Google Translation and Oxford Dictionaries
파일 크기 1.3 MB
설치 횟수 43
현재 버전 0.1.2
최근 업데이트 2021-01-09
출시 날짜 2020-12-27
평점 5.00/5 총 4 개의 평점
개발자 Quang Dinh Bui
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Flexpad",
    "homepage_url": "http:\/\/localhost:8080\/",
    "description": "Select a text and open a Wikipedia pop up right inside your page, support Google Translation and Oxford Dictionaries",
    "default_locale": "en",
    "version": "0.1.2",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Flexpad",
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' ; object-src 'self'"
}