App Instance Tags

Tag all instances of web apps you're developing so you never end up messing with the wrong one.

App Instance Tags란 무엇입니까?

App Instance Tags은(는) Miloš Đekić에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tag all instances of web apps you're developing so you never end up messing with the wrong one."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

App Instance Tags 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Are you a web developer? Familiar with working on a large number of projects simultaneously? Surely, you are using versioning to make your life easy in terms of collaboration and deployment, but what about viewing different instances of the same app in your browser… have you ever changed something in the production instead in your local app instance? Ever messed up badly?

This convenient extension enables you to register an unlimited number of web applications you’re developing and define different instances with URLs for each one. You can register three different types of web app instances:

* Local - most developers use something like "localhost/path-to-app" or define their own paths and create virtual hosts, e.g. “the-app.development.com"
* Staging - although most web app development processes support deploying directly to a production server, a lot of them define a staging server that is used for testing and showcasing development changes
* Production - this is the live application

Once you registered your apps you will see a recognizable letter icon in the URL bar matching the instance type of the page you are currently browsing (L icon for local, S for staging and P for production). You will be able to click on it to see details about the specific app.

You are developing on different machines? No problem, your data is synced between browsers when you sign to Chrome with your Google account!

What about permissions?

1. Tabs

The extension requires access to your tabs to check if you are viewing one of your registered web applications and to provide the icon with information in the URL bar for that particular tab.

2. Storage

Local storage is used to store information about web apps and instances you’re using. The data is synced across browsers if you are signed in with your Google account.                    

확장 프로그램 기본 정보

이름 App Instance Tags App Instance Tags
ID dgchhiocmbkpcloihgballpphjhpkcbi
공식 URL https://chromewebstore.google.com/detail/app-instance-tags/dgchhiocmbkpcloihgballpphjhpkcbi
설명 Tag all instances of web apps you're developing so you never end up messing with the wrong one.
파일 크기 858 KB
설치 횟수 58
현재 버전 1.3
최근 업데이트 2015-07-25
출시 날짜 2015-07-25
평점 4.67/5 총 6 개의 평점
개발자 Miloš Đekić
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "App Instance Tags",
    "short_name": "WebApp Tags",
    "description": "Tag all instances of web apps you're developing so you never end up messing with the wrong one.",
    "version": "1.3",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_popup": "pages\/popup.html"
    },
    "options_page": "pages\/options.html"
}