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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Customize the looks and behavior of Google search page as for your liking"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Tweaker — tiled google search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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]" } } } |