BC Web app config import/export

Now you can export/import/share Adobe's Business Catalyst web apps easily from within Google Chrome.

BC Web app config import/export क्या है?

BC Web app config import/export Mihai Copae द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Now you can export/import/share Adobe's Business Catalyst web apps easily from within Google Chrome."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में BC Web app config import/export एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

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

                        How does it work?
First, install the extension. You can find it on the Google Web Store. If you want to install the latest build follow these instructions

Exporting web apps.
If you want to export an existing web app, go to that app's Edit page. You will notice a little black [BC] icon will appear in the browser's address bar. Click on that icon and a popup dialogue will appear. Select the Export tab then press Export button and be patient. The Chrome extension will automatically open every web app tab (Details/Fields/Layouts/Autoresponder) and extract the data from it. In the end, a textarea will appear filled with the web app settings in JSON format.

You can copy this JSON and share it or use it to copy the web app configs to another site.

Importing web apps.
If you want to import a web app, go to the Business Catalyst Admin Console and choose Add Web App. Click the black [BC] icon in the address bar. Only the import tab will be available. Paste the JSON with the web app configuration you want to import into the textarea and click the Import button. Be patient and don't close the popup (see the note bellow) until the import is done.

Important Note:
Don't click outside of the popup area or change the tab! This will close the popup and abort the export/import operation.

This extension is open source. You can clone the source code from Github https://github.com/adobe-business-catalyst/web-app-export

Any bugs, suggestions, feature requests you can report on app github page.                    

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

नाम BC Web app config import/export BC Web app config import/export
ID cclmieohbdngonpnlcacncndajnfcjoi
आधिकारिक URL https://chromewebstore.google.com/detail/bc-web-app-config-importe/cclmieohbdngonpnlcacncndajnfcjoi
विवरण Now you can export/import/share Adobe's Business Catalyst web apps easily from within Google Chrome.
फ़ाइल का आकार 334 KB
स्थापना संख्या 114
वर्तमान संस्करण 0.0.0.6
अंतिम अपडेट 2013-07-01
प्रकाशन तिथि 2013-07-01
रेटिंग 3.82/5 कुल 11 रेटिंग्स
डेवलपर Mihai Copae
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/adobe-business-catalyst/web-app-export
सहायता पृष्ठ URL https://github.com/adobe-business-catalyst/web-app-export
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BC Web app config import\/export",
    "description": "Now you can export\/import\/share Adobe's Business Catalyst web apps easily from within Google Chrome.",
    "version": "0.0.0.6",
    "background": {
        "scripts": [
            "scripts\/background.min.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "48": "assets\/img\/logo_48.png"
    },
    "page_action": {
        "default_icon": {
            "19": "assets\/img\/logo.png"
        },
        "default_title": "BC Web app export\/import utility",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/AdminConsole\/*",
                "http:\/\/*\/AdminConsoleXT\/*",
                "https:\/\/*\/AdminConsole\/*",
                "https:\/\/*\/AdminConsoleXT\/*"
            ],
            "js": [
                "scripts\/contentscript-libs.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ]
}