FindR

A find and replace bar for Google Chrome

FindR क्या है?

FindR Rahul Yesantharao द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A find and replace bar for Google Chrome"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में FindR एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

 FindR is a handy extension that does exactly what the name implies: it finds and replaces words, allowing you to completely change the text of any website. This is great for pranking and trolling and just having fun with funny edits on pages. On a more practical note, it also has an input field option that allows you to easily find and replace all the text in input fields (such as forms, etc.) NOTE: After installation or updates, refresh any previously opened pages to make the extension work. Usage: * As you type a search term, it finds matches on the page. You can replace by typing text in the replace box and either clicking the arrows (replace one by one) or "Replace All" * NEW! An options page that allows users to save find/replace pairs that automatically apply to any new tab. Features: * Case-sensitive search * Full Word search * Regular Expression support for searching * Input Fields allows users to replace text within input fields (note: this only allows "Replace All" - it doesn't highlight matches). * NEW! Automatic find/replace background functionality Shortcut to Open: * Windows/Linux/ChromeOS: Ctrl+Shift+F * OSX: Ctrl+Shift+K Shortcut to Replace All: * Ctrl+Shift+A 03/25/2017: 1000 users! Thanks everyone! Like before, leave any comments, and I'll try and get back to you - make sure to leave a screenshot or detailed info! 01/30/2017: 700 users!! Thanks guys! Be sure to leave any questions, comments, concerns, and I'll be sure to get back to you! 11/20/2016: 400 users! Thank you everyone. See http://xkcd.com/1288/, https://xkcd.com/1625/, or https://xkcd.com/1679/ for funny uses! ----------------- UPDATES ----------------- 1.0.0 - Stable! 1.0.1 - Rebranded to "FindR" - logo and graphics updated 1.0.2 - Bug fixes (
, , 

एक्सटेंशन की मूल जानकारी

नाम FindR FindR
ID bidnaaogcagbdidehabnjfedabckhdgc
आधिकारिक URL https://chrome.google.com/webstore/detail/findr/bidnaaogcagbdidehabnjfedabckhdgc
विवरण A find and replace bar for Google Chrome
फ़ाइल का आकार 339 KB
स्थापना संख्या 5,593
वर्तमान संस्करण 1.1.2
अंतिम अपडेट 2017-07-23
प्रकाशन तिथि 2017-07-23
रेटिंग 3.74/5 कुल 66 रेटिंग्स
डेवलपर Rahul Yesantharao
एक्सटेंशन वेबसाइट http://www.rahulyesantharao.com
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FindR",
    "version": "1.1.2",
    "description": "A find and replace bar for Google Chrome",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_title": "FindR - click to search!",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "injectcss.css"
            ],
            "js": [
                "jquery-2.2.2.min.js",
                "c_script.js"
            ]
        }
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+F",
                "mac": "Command+Shift+K",
                "chromeos": "Ctrl+Shift+F",
                "linux": "Ctrl+Shift+F"
            }
        },
        "replace-all": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "Replace All, equivalent to pressing the Replace All button"
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": false
    },
    "offline_enabled": true,
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ]
}