Medium to Periscope Viewer (Unlock Premium Articles)

Adds a minimal button to open premium Medium articles in Periscope.

  1. // ==UserScript==
  2. // @name Medium to Periscope Viewer (Unlock Premium Articles)
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.2
  5. // @description Adds a minimal button to open premium Medium articles in Periscope.
  6. // @author Hasan-Abbas
  7. // @license MIT
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=medium.com
  9. // @match https://*.medium.com/*
  10. // @grant none
  11. // @run-at document-end
  12. // ==/UserScript==
  13. (function () {
  14. 'use strict';
  15. // Function to create and add button
  16. function addPeriscopeButton() {
  17. // Check if button already exists
  18. if (document.getElementById('periscope-button')) return;
  19. // Create container
  20. const container = document.createElement('div');
  21. container.id = 'periscope-button';
  22. // Set styles for container
  23. Object.assign(container.style, {
  24. position: 'fixed',
  25. bottom: '20px', // Changed from top to bottom
  26. right: '20px',
  27. zIndex: '9999999',
  28. cursor: 'pointer',
  29. display: 'flex',
  30. alignItems: 'center',
  31. padding: '8px 16px',
  32. backgroundColor: 'white',
  33. borderRadius: '8px',
  34. boxShadow: '0 2px 5px rgba(0,0,0,0.1)',
  35. fontFamily: '-apple-system, system-ui, "Segoe UI", Roboto, sans-serif',
  36. fontSize: '14px',
  37. color: 'black',
  38. transition: 'all 0.2s ease',
  39. border: '1px solid rgba(0,0,0,0.1)'
  40. });
  41. // Add button content
  42. container.innerHTML = `
  43. <svg style="margin-right: 8px;" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
  44. <circle cx="12" cy="12" r="10"/>
  45. <line x1="12" y1="8" x2="12" y2="16"/>
  46. <line x1="8" y1="12" x2="16" y2="12"/>
  47. </svg>
  48. Open in Periscope
  49. `;
  50. // Add hover effects
  51. container.addEventListener('mouseover', () => {
  52. container.style.transform = 'translateY(-2px)';
  53. container.style.boxShadow = '0 4px 8px rgba(0,0,0,0.1)';
  54. });
  55. container.addEventListener('mouseout', () => {
  56. container.style.transform = 'translateY(0)';
  57. container.style.boxShadow = '0 2px 5px rgba(0,0,0,0.1)';
  58. });
  59. // Add click handler
  60. container.addEventListener('click', () => {
  61. const currentUrl = window.location.href;
  62. window.location.href = `https://periscope.corsfix.com/?${currentUrl}`;
  63. });
  64. // Add to page
  65. document.body.appendChild(container);
  66. }
  67. // Initial addition of button
  68. setTimeout(addPeriscopeButton, 1000);
  69. // Handle dynamic page changes (for Single Page Applications)
  70. const observer = new MutationObserver((mutations) => {
  71. setTimeout(addPeriscopeButton, 1000);
  72. });
  73. observer.observe(document.body, {
  74. childList: true,
  75. subtree: true
  76. });
  77. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址