Replace Text

Adds replace text to context menu.

Vad är Replace Text?

Replace Text är en Chrome-tillägg utvecklad av Danny Keeley, och dess huvudfunktion är "Adds replace text to context menu.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Replace Text-förlängningens CRX-fil

Ladda ner Replace Text-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Right click on some text and choose Replace Text to begin!
Can also solve maths if in (brackets)

## Updates ##
v0.2 Styling and bug fixes (May 2021)                    

Grundläggande Information om Tillägg

Namn Replace Text Replace Text
ID jgghhonicjikbioneblcjhoghndmmcba
Officiell webbadress https://chromewebstore.google.com/detail/replace-text/jgghhonicjikbioneblcjhoghndmmcba
Beskrivning Adds replace text to context menu.
Filstorlek 10.45 KB
Antal Installationer 27
Aktuell Version 0.2
Senast Uppdaterad 2021-05-10
Publiceringsdatum 2021-05-08
Utvecklare Danny Keeley
E-post [email protected]
Betalningssätt free
Stödda Språk en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Replace Text",
    "version": "0.2",
    "description": "Adds replace text to context menu.",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon-32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "match_about_blank": true
        }
    ],
    "permissions": [
        "contextMenus"
    ]
}