├── img ├── icon128.png └── icon48.png ├── AmazonDriveExtension.crx ├── README.md ├── manifest.json └── js └── background.js /img/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/AmazonDriveExtension/master/img/icon128.png -------------------------------------------------------------------------------- /img/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/AmazonDriveExtension/master/img/icon48.png -------------------------------------------------------------------------------- /AmazonDriveExtension.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timleland/AmazonDriveExtension/master/AmazonDriveExtension.crx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Amazon Drive Chrome Extension 2 | 3 | Removes restriction that prevents playback of videos over 20 minutes 4 | 5 | [How to install](https://timleland.com/amazon-drive-chrome-extension/) 6 | 7 | - “We don’t support playback of videos longer than 20 minutes.” 8 | - "Playback is supported for videos up to 20 minutes in length." 9 | - "Video is too long for playback" 10 | - "Video is too large for playback" 11 | 12 | Blog: https://timleland.com/ 13 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Amazon Drive", 3 | "version": "1.0.0", 4 | "description": "Allow video playback over 20 minutes", 5 | 6 | "icons": { 7 | "48": "img/icon48.png", 8 | "128": "img/icon128.png" 9 | }, 10 | "content_scripts": [{ 11 | "matches": ["*://*.amazon.ca/clouddrive/*", "*://*.amazon.com/clouddrive/*"], 12 | "js": ["js/jquery.js", "js/background.js"] 13 | }], 14 | "manifest_version": 2 15 | } 16 | -------------------------------------------------------------------------------- /js/background.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | 3 | var injectVideo = function(videoUrl) { 4 | $('body').prepend(` 5 |