TubeMark

Bookmark and take notes on YouTube timeline.

Vad är TubeMark?

TubeMark är en Chrome-tillägg utvecklad av chaosifier, och dess huvudfunktion är "Bookmark and take notes on YouTube timeline.".

Tilläggsskärmbilder

screenshot

Ladda ner TubeMark-förlängningens CRX-fil

Ladda ner TubeMark-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

                        As the name suggests, this extension allows you to bookmark timelines in YouTube, and take notes.                    

Grundläggande Information om Tillägg

Namn TubeMark TubeMark
ID lhpnjmlibhnkegajheajbkcmdjglaljo
Officiell webbadress https://chrome.google.com/webstore/detail/tubemark/lhpnjmlibhnkegajheajbkcmdjglaljo
Beskrivning Bookmark and take notes on YouTube timeline.
Filstorlek 91.5 KB
Antal Installationer 22
Aktuell Version 1.0.1
Senast Uppdaterad 2020-11-17
Publiceringsdatum 2020-11-13
Betyg 3.25/5 Totalt 4 Betyg
Utvecklare chaosifier
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/chaosifier/TubeMark
Hjälpsida URL https://github.com/chaosifier/TubeMark/issues
URL till Sekretesspolicy Sidan https://github.com/chaosifier/TubeMark/blob/master/chrome-extensions.md
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TubeMark",
    "description": "Bookmark and take notes on YouTube timeline.",
    "version": "1.0.1",
    "author": "Sagar Dahal",
    "browser_action": {
        "default_icon": "ic_launcher.png",
        "default_title": "TubeMark"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/www.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "256": "ic_launcher.png"
    },
    "web_accessible_resources": [
        "mainPage.html"
    ]
}