Autoplay No More
Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.
Vad är Autoplay No More?
Autoplay No More är en Chrome-tillägg utvecklad av https://www.kiboke-studio.hr, och dess huvudfunktion är "Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.".
Tilläggsskärmbilder
Ladda ner Autoplay No More-förlängningens CRX-fil
Ladda ner Autoplay No More-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
Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo. Grundläggande Information om Tillägg
| Namn | |
| ID | obiogedpmdnfaldjdjmnbpmhjjfnghnj |
| Officiell webbadress | https://chromewebstore.google.com/detail/autoplay-no-more/obiogedpmdnfaldjdjmnbpmhjjfnghnj |
| Beskrivning | Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo. |
| Filstorlek | 13.88 KB |
| Antal Installationer | 1,051 |
| Aktuell Version | 0.4.2 |
| Senast Uppdaterad | 2023-08-21 |
| Publiceringsdatum | 2020-04-16 |
| Betyg | 3.00/5 Totalt 8 Betyg |
| Utvecklare | https://www.kiboke-studio.hr |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://www.kiboke-studio.hr/browser-extensions/ |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Autoplay No More",
"description": "Disable automatic jumps from current to next video on Youtube, TED, Bing and Vimeo.",
"version": "0.4.2",
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"96": "icons\/96.png",
"128": "icons\/128.png"
},
"author": "Daniel Kladnik",
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"css": [
"data\/youtube.css"
],
"js": [
"data\/youtube.js"
]
},
{
"matches": [
"*:\/\/*.vimeo.com\/*"
],
"css": [
"data\/vimeo.css"
],
"js": [
"data\/vimeo.js"
]
},
{
"matches": [
"*:\/\/*.ted.com\/*"
],
"js": [
"data\/ted.js"
]
},
{
"matches": [
"*:\/\/*.bing.com\/videos\/*"
],
"js": [
"data\/bing.js"
]
}
]
} | |