Environment Marker

Provides a way to add a color indicator or marker (ribbon) on a web page depending on the URL.

Environment Marker란 무엇입니까?

Environment Marker은(는) XjSv에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides a way to add a color indicator or marker (ribbon) on a web page depending on the URL."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Environment Marker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Features:
- Configurable Ribbons - Add a URL or part of a URL, choose a color and a ribbon will be added to the page of any website that matches part of that URL. Here are some examples:

    - github.com
    - https://github.com
    - http://dev.
    - http://qa.
    - environment-marker

- Configurable Ribbon Positions - Choose where to position the ribbon (top left, top right, bottom left, bottom right).
- Configurable Ribbon Sizes - Choose one of 5 sizes (extra small, small, normal, large, extra large).
- Ribbon Labels - Displays a label on the ribbon.
- Import/Export - Export and import ribbon configurations.
- Multilingual Support - Currently supports English, Spanish, German & French (more coming soon).
- Reusable Color Swatch - The last 7 colors used will be available from the color swatch.
- RegExp - When enabled the URL fragment can be used with RegExp instead of searching using indexOf.
- Tab Counter - Displays the number of open tabs. Color is green when under 10 tabs and red when above. I plan to make this configurable in the future.
- Font Picker - Ability to select fonts for the ribbons. Font come from Google Fonts.
- Favicon Marker - Ability to set a colored circle marker to the favicon of the site.

See the open issues in GitHub for a list of proposed features (and known issues).

Github: https://github.com/XjSv/environment-marker

For contribution to translations see Environment Marker in Crowdin: https://crowdin.com/project/environment-marker                    

확장 프로그램 기본 정보

이름 Environment Marker Environment Marker
ID cjnmfjkimfbollcepfbhpahipampinhb
공식 URL https://chromewebstore.google.com/detail/environment-marker/cjnmfjkimfbollcepfbhpahipampinhb
설명 Provides a way to add a color indicator or marker (ribbon) on a web page depending on the URL.
파일 크기 888 KB
설치 횟수 1,691
현재 버전 3.0.1
최근 업데이트 2023-07-10
출시 날짜 2020-09-23
평점 5.00/5 총 2 개의 평점
개발자 XjSv
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/XjSv/environment-marker
도움말 페이지 URL https://github.com/XjSv/environment-marker/issues
지원되는 언어 de,en,fr,es,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "3.0.1",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/XjSv\/environment-marker",
    "default_locale": "en",
    "icons": {
        "32": "\/images\/icons\/environment-marker-32.png",
        "64": "\/images\/icons\/environment-marker-64.png",
        "128": "\/images\/icons\/environment-marker-128.png",
        "256": "\/images\/icons\/environment-marker-256.png",
        "512": "\/images\/icons\/environment-marker-512.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "minimum_chrome_version": "88",
    "action": {
        "chrome_style": false,
        "theme_icons": [
            {
                "light": "\/images\/icons\/environment-marker-32.png",
                "dark": "\/images\/icons\/environment-marker-32.png",
                "size": 32
            }
        ],
        "default_icon": {
            "32": "\/images\/icons\/environment-marker-32.png"
        },
        "default_title": "Environment Marker",
        "default_popup": "\/popup\/environment-marker.html"
    },
    "options_ui": {
        "page": "\/options\/options.html"
    },
    "background": {
        "service_worker": "js\/background.min.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "libraries\/favico.min.js",
                "js\/content.min.js"
            ]
        }
    ]
}