Multi Purpose Extension

Extension merging many modules : access to setting pages of Chrome, tasks management, sessions management, mouse gestures, ...

Multi Purpose Extension क्या है?

Multi Purpose Extension https://sites.google.com/site/publicationact द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension merging many modules : access to setting pages of Chrome, tasks management, sessions management, mouse gestures, ..."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        MPE extension is provided in french but also in english, german and spanish. It aggregates some classical functionalities in only one simple and light extension. Each module is independant and may be deactivated :

- management of browser through mouse moves,
- replacement of "newtab" page (in standard or in private mode),
- access to chrome parameters pages (downloads, history, flags, ...),
- access to all levels of current url,
- display and access to all links of current tab,
- display a quick view of history or downloads directly in the popup,
- run a search creating as many tabs as search engines,
- management of a todo list,
- management of a  reading list of url,
- management of sessions (a set of tabs stored and opened together),
- management of opened tabs (direct access to or close a tab),
- deletion of last minutes of history (a new call will suppress twice more and so on)
- activate/deactivate other rarely used extensions (to avoid systematically their loading)

The extension is enterily parameterized and a french documentation is available online with screenshots. For other users, an english PDF documentation is available on the website.                    

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

नाम Multi Purpose Extension Multi Purpose Extension
ID hnobjndmkgidekbgmklfdoomjlibfabo
आधिकारिक URL https://chromewebstore.google.com/detail/multi-purpose-extension/hnobjndmkgidekbgmklfdoomjlibfabo
विवरण Extension merging many modules : access to setting pages of Chrome, tasks management, sessions management, mouse gestures, ...
फ़ाइल का आकार 280 KB
स्थापना संख्या 85
वर्तमान संस्करण 4.8.0
अंतिम अपडेट 2024-01-22
प्रकाशन तिथि 2020-06-20
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://sites.google.com/site/publicationact
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://sites.google.com/site/publicationact/developpements/chrome/une-extension-pour-chrome
सहायता पृष्ठ URL https://sites.google.com/site/publicationact/developpements/chrome/une-extension-pour-chrome
समर्थित भाषाएँ de,en,fr,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": {
            "16": "Icones\/Option16.png",
            "48": "Icones\/Option48.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "contentmse.js",
                "contentmpe.js"
            ]
        }
    ],
    "default_locale": "fr",
    "description": "__MSG_jsonDescription__",
    "homepage_url": "https:\/\/sites.google.com\/site\/publicationact\/developpements\/chrome\/une-extension-pour-chrome",
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "Icones\/Option16.png",
        "48": "Icones\/Option48.png"
    },
    "manifest_version": 3,
    "name": "Multi Purpose Extension",
    "options_page": "option.html",
    "permissions": [
        "bookmarks",
        "contextMenus",
        "downloads",
        "downloads.shelf",
        "history",
        "management",
        "scripting",
        "storage",
        "tabs"
    ],
    "short_name": "MPE",
    "version": "4.8.0"
}