Website Tagger

Tag websites on various conditions for easy recognition

Website Tagger란 무엇입니까?

Website Tagger은(는) Kushagra Gour에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tag websites on various conditions for easy recognition"입니다.

확장 프로그램 스크린샷

screenshot

Website Tagger 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Let's say:
- You want to tag your staging and product environments differently
- You want to tag your app differently when logged into a customer's account for debugging
- You want to tag websites when they are using a certain thing in the HTML. May be they are using your library!

This extension is just for you!                    

확장 프로그램 기본 정보

이름 Website Tagger Website Tagger
ID mnafbagbhobbimnofgdibonhjidgildh
공식 URL https://chromewebstore.google.com/detail/website-tagger/mnafbagbhobbimnofgdibonhjidgildh
설명 Tag websites on various conditions for easy recognition
파일 크기 25.35 KB
설치 횟수 28
현재 버전 1.2
최근 업데이트 2020-05-17
출시 날짜 2020-05-17
개발자 Kushagra Gour
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Tag websites on various conditions for easy recognition",
    "manifest_version": 2,
    "name": "Website Tagger",
    "version": "1.2",
    "browser_action": {
        "default_icon": "logo-64.png",
        "default_popup": "popup.html",
        "browser_style": true
    },
    "icons": {
        "16": "logo-64.png",
        "48": "logo-64.png",
        "128": "logo-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "permissions": [
        "",
        "storage"
    ]
}