Fire Squirrel

Replace a word on a page with another word.

Fire Squirrel란 무엇입니까?

Fire Squirrel은(는) jennhsu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace a word on a page with another word."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Fire Squirrel 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}