Fire Squirrel

Replace a word on a page with another word.

Fire Squirrelคืออะไร?

Fire Squirrel เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jennhsu และคุณลักษณะหลักของมันคือ "Replace a word on a page with another word."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fire Squirrel

ดาวน์โหลดไฟล์ส่วนขยาย Fire Squirrel ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This squirrel is on fire!
A word replacing extension for Google Chrome

Defaults to replacing the word "girl" with "squirrel". You can pick your own words (or even emojis) on the options page. Now also supports updating URLs, Regular Expressions (regex), and whitelisting/blacklisting URLs to change.

Test it out by searching for the following song lyrics:
Primadonna Girl - Marina and the Diamonds
Run The World (Girls) - Beyoncé
Girl On Fire - Alicia Keys

Contribute at https://github.com/hsubox/fire-squirrel                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Fire Squirrel Fire Squirrel
ID hbkgdoeflcloeepeihpdekknnnedplom
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fire-squirrel/hbkgdoeflcloeepeihpdekknnnedplom
คำอธิบาย Replace a word on a page with another word.
ขนาดไฟล์ 25.95 KB
จำนวนการติดตั้ง 57
เวอร์ชันปัจจุบัน 0.0.0.5
อัปเดตครั้งล่าสุด 2018-07-17
วันที่เผยแพร่ 2018-07-16
คะแนน 3.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา jennhsu
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/hsubox/fire-squirrel
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fire Squirrel",
    "version": "0.0.0.5",
    "description": "Replace a word on a page with another word.",
    "options_page": "options.html",
    "background": {
        "persistent": false,
        "scripts": [
            "onInstalled.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "findAndReplaceDOMText.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_icon": "icon-96.png",
        "default_title": "Fire Squirrel"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "48": "icon-48.png",
        "96": "icon-96.png",
        "128": "icon-128.png"
    }
}