Save tabs as HTML

Save list of open tabs as an HTML file.

Save tabs as HTML क्या है?

Save tabs as HTML Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save list of open tabs as an HTML file."।

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

screenshot

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

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

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

                        This addon generates an HTML file containing links pointing to the tabs open in all windows.

The file includes the title and URL of each tab, as well as the browser user agent and the date and time the file was saved. This can be useful as an ad-hoc way to save a browser session.

Unlike similar addons that save to a text file, this extension saves the open tabs as HTML, which can be re-opened in the browser later and the URLs re-opened with a click.

This addon does not store or archive the pages themselves. It only saves the URL and title of the page.

Incognito tabs are excluded.                    

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

नाम Save tabs as HTML Save tabs as HTML
ID dmnhgbenglfffoaodbgpfoihfnbdbfcb
आधिकारिक URL https://chromewebstore.google.com/detail/save-tabs-as-html/dmnhgbenglfffoaodbgpfoihfnbdbfcb
विवरण Save list of open tabs as an HTML file.
फ़ाइल का आकार 12.13 KB
स्थापना संख्या 640
वर्तमान संस्करण 0.3.2
अंतिम अपडेट 2021-11-30
प्रकाशन तिथि 2021-11-12
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Unknown
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/nbeaver/save-tabs-as-html
सहायता पृष्ठ URL https://github.com/nbeaver/save-tabs-as-html/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save tabs as HTML",
    "description": "Save list of open tabs as an HTML file.",
    "manifest_version": 2,
    "version": "0.3.2",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "tabs",
        "downloads"
    ],
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "Save tabs as HTML."
    },
    "background": {
        "scripts": [
            "save_tabs.js"
        ]
    }
}