Replace Text

Adds replace text to context menu.

什麼是Replace Text?

Replace Text是由Danny Keeley開發的Chrome擴展程式,該擴展的主要功能是“Adds replace text to context menu.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Replace Text擴展crx文件

下載Replace Text擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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)                    

擴展基本資訊

名稱 Replace Text Replace Text
ID jgghhonicjikbioneblcjhoghndmmcba
官方網址 https://chromewebstore.google.com/detail/replace-text/jgghhonicjikbioneblcjhoghndmmcba
簡介 Adds replace text to context menu.
檔案大小 10.45 KB
安裝次數 27
目前版本 0.2
更新時間 2021-05-10
上架時間 2021-05-08
開發者 Danny Keeley
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    ]
}