Sema Login Autocomplete

Configure users credentials for each environment of your development web-projects. It's more than an autocomplete feature :-)

Sema Login Autocompleteคืออะไร?

Sema Login Autocomplete เป็นส่วนขยายของ Chrome ที่พัฒนาโดย José Manuel García García และคุณลักษณะหลักของมันคือ "Configure users credentials for each environment of your development web-projects. It's more than an autocomplete feature :-)"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sema Login Autocomplete

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

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

                        Are you tired of write several time the user credentials of your current web development? Do you have a lot of different users in your web-app? Don't you remember which one is each credentials?

With the help of this extension you'll manage all your users and all your development environments (ouh yeah, production too!!), and don't care about the passwords :-)

Moreover, you could share that configuration (users, environments, credentials...) with your new mates, and you'll save your appreciated and tight time avoiding to resent them manually!

Languages: english, spanish and coming soon... italian! (automatically selected based on the chrome-lang)

Install it right now!                    

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

ชื่อ Sema Login Autocomplete Sema Login Autocomplete
ID icibgoniiblnlggidknaoijhcomafhma
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/sema-login-autocomplete/icibgoniiblnlggidknaoijhcomafhma
คำอธิบาย Configure users credentials for each environment of your development web-projects. It's more than an autocomplete feature :-)
ขนาดไฟล์ 349 KB
จำนวนการติดตั้ง 35
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2016-04-23
วันที่เผยแพร่ 2016-04-23
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา José Manuel García García
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "version": "1.2",
    "default_locale": "en",
    "description": "__MSG_extDescription__",
    "author": "Sema (Jos\u00e9 Manuel Garc\u00eda Garc\u00eda)",
    "browser_action": {
        "default_icon": "icons\/16\/s2.png",
        "default_title": "Sema Login Autocomplete Extension",
        "default_popup": "browser\/browser-action.html"
    },
    "background": {
        "scripts": [
            "libs\/jquery.js",
            "background\/background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+S",
                "mac": "Command+Shift+S",
                "chromeos": "Ctrl+Shift+S",
                "linux": "Ctrl+Shift+S"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "styles\/main.css"
            ],
            "js": [
                "libs\/jquery.js",
                "content\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icons\/16\/s2.png",
        "48": "icons\/48\/s2.png",
        "128": "icons\/128\/s2.png"
    },
    "offline_enabled": true,
    "options_page": "options\/options.html",
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "clipboardRead",
        "clipboardWrite",
        "contentSettings",
        "storage",
        "tabs",
        "*:\/\/*\/*"
    ]
}