Your Last Tabs

Your Last Tabs, blah blah blah...

Your Last Tabs क्या है?

Your Last Tabs Bruce King द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Your Last Tabs, blah blah blah..."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Your Last Tabs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        In the Chrome's default session recovery mechanism, you just can open your last session's tabs all, or none of them. As a lazy man as me, open them all will make myself feel of great pressure. Even in the empty new tab, Chrome just provides me an option to open them all, again.

So, this extension just meets the requirement of listing and recording the last session's tabs (which can be synchronized through your Google Account). You can use an empty one (or others) as your home page, than you will open your last tabs one by one, slowly and gracefully. And, you still can do nothing at all, of course~ :p

For those a little bit long pages, you can right click at the page to "Read it later", in order to continue further reading.

It won't disturb you, and will appear when you need it.

Source code: https://github.com/xieweiking/your-last-tabs                    

एक्सटेंशन की मूल जानकारी

नाम Your Last Tabs Your Last Tabs
ID ienkklcnakbadapndalaidhcefjmeepo
आधिकारिक URL https://chromewebstore.google.com/detail/your-last-tabs/ienkklcnakbadapndalaidhcefjmeepo
विवरण Your Last Tabs, blah blah blah...
फ़ाइल का आकार 51.88 KB
स्थापना संख्या 442
वर्तमान संस्करण 0.2.9
अंतिम अपडेट 2014-11-30
प्रकाशन तिथि 2014-11-29
रेटिंग 4.36/5 कुल 11 रेटिंग्स
डेवलपर Bruce King
भुगतान के प्रकार free
समर्थित भाषाएँ en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "version": "0.2.9",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "16": "image\/icon16.png",
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "default_locale": "en",
    "page_action": {
        "default_icon": "image\/icon19.png",
        "default_title": "__MSG_extensionToolTip__",
        "default_popup": "page\/popup.html"
    },
    "background": {
        "scripts": [
            "script\/array.js",
            "script\/options.js",
            "script\/functions.js",
            "script\/background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "script\/options.js",
                "script\/functions.js",
                "script\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_page": "page\/options.html",
    "permissions": [
        "chrome:\/\/favicon\/",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "page\/blank.html",
        "script\/blank.js"
    ],
    "manifest_version": 2
}