Google Tweaker — tiled google search

Customize the looks and behavior of Google search page as for your liking

Google Tweaker — tiled google search란 무엇입니까?

Google Tweaker — tiled google search은(는) emvaized에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize the looks and behavior of Google search page as for your liking"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Google Tweaker — tiled google search 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Customize the looks and behavior of Google search page for better productivity! 

-   Make whole search result in Google clickable and interactive (like in DuckDuckGo) 
-   Make search results look and behave like cards, with configurable border radius and shadows, colors and so on
-   Utilize horizontal screen space and scroll less by moving search widgets to the right sidebar 
-   2 column view
-   Extended keyboard navigation with arrow and number keys


Note about "all tabs" permission:

Although browser may mark this addon as requiring access to all opened tabs, in fact it is not. It uses include_globs manifest key to gain access only to Google search page and all it's local variations (such as "www.google.es", "google.com.ua" etc).

This extension doesn't have access to any other pages you open, which you can verify by checking the extensions dropdown in the toolbar. This confusion comes from limitations of matches manifest key, which doesn't support precise subdomain matching.                    

확장 프로그램 기본 정보

이름 Google Tweaker — tiled google search Google Tweaker — tiled google search
ID cjbgjibpaopnjfbhipjfckeodbaednbg
공식 URL https://chromewebstore.google.com/detail/google-tweaker-%E2%80%94-tiled-go/cjbgjibpaopnjfbhipjfckeodbaednbg
설명 Customize the looks and behavior of Google search page as for your liking
파일 크기 53.58 KB
설치 횟수 55
현재 버전 2.5.1
최근 업데이트 2024-02-29
출시 날짜 2021-02-02
평점 5.00/5 총 2 개의 평점
개발자 emvaized
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/emvaized/google-tiles-extension
개인정보 보호 정책 페이지 URL https://github.com/emvaized/selecton-extension/blob/master/PRIVACY.md
지원되는 언어 en,fr,nl,es,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "default_locale": "en",
    "name": "Google Tweaker \u2014 tiled google search",
    "version": "2.5.1",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "48": "icons\/google-tiles-new-icon-48.png",
        "96": "icons\/google-tiles-new-icon-96.png"
    },
    "content_scripts": [
        {
            "js": [
                "src\/configs.js",
                "src\/functions.js",
                "src\/keyboard-handler.js",
                "src\/layout.js",
                "src\/tile.js",
                "src\/index.js"
            ],
            "css": [
                "src\/index.css"
            ],
            "run_at": "document_start",
            "matches": [
                "*:\/\/*\/search?q=*"
            ],
            "include_globs": [
                "*:\/\/www.google.*\/search?*"
            ],
            "exclude_globs": [
                "*:\/\/www.google.*\/search?*&tbm=*"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/google-tiles-new-icon-96.png",
        "default_title": "Google Tweaker",
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "options\/options.html",
        "browser_style": true,
        "chrome_style": true,
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}