YTPP
YTPP: YouTube Play/Pause without switching tabs
Vad är YTPP?
YTPP är en Chrome-tillägg utvecklad av spidergears, och dess huvudfunktion är "YTPP: YouTube Play/Pause without switching tabs".
Tilläggsskärmbilder
Ladda ner YTPP-förlängningens CRX-fil
Ladda ner YTPP-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
                        YTPP: YouTube Play/Pause
Extension lets user play/pause youtube without having to switch tabs. Clicking the extension button toggles playback state for all open youtube tabs.                     Grundläggande Information om Tillägg
| Namn |   |  
| ID | onlhipebedljinheklgalifgbolcmndi | 
| Officiell webbadress | https://chromewebstore.google.com/detail/ytpp/onlhipebedljinheklgalifgbolcmndi | 
| Beskrivning | YTPP: YouTube Play/Pause without switching tabs | 
| Filstorlek | 10.16 KB | 
| Antal Installationer | 23 | 
| Aktuell Version | 0.1 | 
| Senast Uppdaterad | 2016-11-20 | 
| Publiceringsdatum | 2016-11-20 | 
| Betyg | 3.00/5 Totalt 2 Betyg | 
| Utvecklare | spidergears | 
| E-post | [email protected] | 
| Betalningssätt | free | 
| Stödda Språk | en-GB | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YTPP",
    "short_name": "YTPP",
    "version": "0.1",
    "description": "YTPP: YouTube Play\/Pause without switching tabs",
    "icons": {
        "128": "icon.png",
        "48": "icon_48.png",
        "16": "icon_16.png"
    },
    "author": {
        "name": "spidergears",
        "twitter_handle": "spider_gears",
        "github": "http:\/\/github.com\/spidergears"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "YTPP"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "ytpp_background_script.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "ytpp_content_script.js"
            ]
        }
    ]
}  |  |