Stay Signed Out

Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.

ما هو Stay Signed Out؟

Stay Signed Out هو إضافة Chrome تم تطويرها بواسطة https://staysignedout.com، والميزة الرئيسية لها هي "Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Stay Signed Out

قم بتنزيل ملفات الامتداد Stay Signed Out بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Stay Signed Out automatically unchecks the "Stay signed in" checkbox on the Google Accounts Sign in page.

Now, also hides "Visit My Account" pop box on the Google homepage. Neat.

It is small, fast, and unobtrusive.                    

معلومات أساسية عن التمديد

الاسم Stay Signed Out Stay Signed Out
ID ecgmpblnpipfpampgnnheaacnpadpagi
عنوان URL الرسمي https://chromewebstore.google.com/detail/stay-signed-out/ecgmpblnpipfpampgnnheaacnpadpagi
الوصف Automatically uncheck the 'Stay signed in' checkbox on the Google Accounts page.
حجم الملف 18.07 KB
عدد التثبيتات 95
النسخة الحالية 0.0.8
آخر تحديث 2015-06-06
تاريخ النشر 2015-06-05
تقييم 2.67/5 مجموع تقييمات 3
المطور https://staysignedout.com
نوع الدفع free
موقع الإضافة http://staysignedout.com
عنوان صفحة المساعدة https://groups.google.com/d/forum/StaySignedOut
اللغات المدعومة de,en,fr,es,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "short_name": "__MSG_shortName__",
    "version": "0.0.8",
    "author": "operator",
    "default_locale": "en",
    "description": "__MSG_extDesc__",
    "incognito": "spanning",
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "images\/16x16.png",
        "32": "images\/32x32.png",
        "48": "images\/48x48.png",
        "128": "images\/128x128.png"
    },
    "page_action": {
        "default_title": "Stay Signed Out",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/accounts.google.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "uncheck.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "include_globs": [
                "http:\/\/www.google.*\/*",
                "https:\/\/www.google.*\/*"
            ],
            "run_at": "document_end",
            "js": [
                "hide_popup.js"
            ]
        },
        {
            "matches": [
                "*:\/\/staysignedout.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "installCheck.js"
            ]
        }
    ],
    "manifest_version": 2
}