On Topic

On Topic

Vad är On Topic?

On Topic är en Chrome-tillägg utvecklad av developer, och dess huvudfunktion är "On Topic".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner On Topic-förlängningens CRX-fil

Ladda ner On Topic-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

                        On Topic is a browser extension that identifies and blocks content that is unrelated to what you're supposed to be doing.  Simply enter some topics you want to focus on, and if the On Topic extension detects that you're looking at content unrelated to your area of focus, you will be redirected.  For more info go to getontopic.com                    

Grundläggande Information om Tillägg

Namn On Topic On Topic
ID omofakciigccijakmgngefkphfeclpdc
Officiell webbadress https://chromewebstore.google.com/detail/on-topic/omofakciigccijakmgngefkphfeclpdc
Beskrivning On Topic
Filstorlek 161 KB
Antal Installationer 29
Aktuell Version 1.1.1
Senast Uppdaterad 2020-11-15
Publiceringsdatum 2020-09-19
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare developer
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://getontopic.com
URL till Sekretesspolicy Sidan https://getontopic.com/privacy
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "On Topic",
    "description": "On Topic",
    "version": "1.1.1",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "48": "icons\/favicon-32x32.png"
    },
    "browser_action": {
        "default_title": "On Topic",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/*"
    ]
}