Greasy Fork is available in English.

Instagram Audio Autoplay

Automatically enable audio playback on Instagram videos

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Instagram Audio Autoplay
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Automatically enable audio playback on Instagram videos
// @author       Leon Theremin
// @match        https://www.instagram.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Define a function to enable audio playback
    function enableAudio(video) {
        video.muted = false;
    }

    // Define a function to check for new videos and enable audio playback
    function checkForNewVideos() {
        // Get all video elements on the page
        const videos = document.getElementsByTagName('video');

        // Loop through each video element and enable audio playback
        for (let i = 0; i < videos.length; i++) {
            // Check if the video has already been processed
            if (!videos[i].hasAttribute('data-audio-enabled')) {
                // Enable audio playback
                enableAudio(videos[i]);

                // Mark the video as processed
                videos[i].setAttribute('data-audio-enabled', true);
            }
        }
    }

    // Check for new videos every 500 milliseconds
    setInterval(checkForNewVideos, 500);
})();