Simplify Overleaf

Simplify your overleaf to focus on editing!

Vad är Simplify Overleaf?

Simplify Overleaf är en Chrome-tillägg utvecklad av weigq1234, och dess huvudfunktion är "Simplify your overleaf to focus on editing!".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Simplify Overleaf-förlängningens CRX-fil

Ladda ner Simplify Overleaf-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        There exist some redundant elements in online Overleaf, making it unfriendly for users, especially the laptop users. This extension aims to simplify your overleaf to focus on editing!                    

Grundläggande Information om Tillägg

Namn Simplify Overleaf Simplify Overleaf
ID gcgalefamlbjhfjlomkmbpkjcnbcellm
Officiell webbadress https://chromewebstore.google.com/detail/simplify-overleaf/gcgalefamlbjhfjlomkmbpkjcnbcellm
Beskrivning Simplify your overleaf to focus on editing!
Filstorlek 1.37 MB
Antal Installationer 36
Aktuell Version 1.0.3
Senast Uppdaterad 2021-11-14
Publiceringsdatum 2021-11-11
Utvecklare weigq1234
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/weigq/simplify_overleaf
Hjälpsida URL https://github.com/weigq/simplify_overleaf
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simplify Overleaf",
    "description": "Simplify your overleaf to focus on editing!",
    "version": "1.0.3",
    "homepage_url": "https:\/\/github.com\/weigq\/simplify_overleaf",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab"
    ],
    "browser_action": [],
    "icons": {
        "128": "\/logo-128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "js": [
                "\/thirdparty\/jquery.min.js",
                "\/thirdparty\/ResizeSensor.js",
                "\/thirdparty\/ElementQueries.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
}