This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Privacy Policy for Pause Tab | |
| Effective Date: April 10, 2026 | |
| 1. Data Collection: | |
| The "Pause Tab" extension does not collect, store, or transmit any personal information, browsing history, or user data to any external servers. All operations, including the pause overlay and countdown timer, happen locally within your browser. | |
| 2. Permissions: | |
| activeTab & scripting: Used solely to display the pause overlay on the specific tab you choose to pause. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| picture { | |
| position: relative; | |
| width: 90vw; | |
| height: auto; | |
| margin: 10vh; | |
| &::after { | |
| content: ''; | |
| position: absolute; | |
| top: 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* CSS for the demo page of The Designers Guide to the Galaxy (of Code) | |
| Read the first episode on this Medium article series at http://bit.ly/2TYFqVz | |
| Find the HTML at http://bit.ly/2ZdxjDq | |
| */ | |
| /* Import our space themed font */ | |
| @import url('https://fonts.googleapis.com/css?family=Titillium+Web'); | |
| html { | |
| -webkit-box-sizing: border-box; /* Safari <= 5 */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta lang="en-US"> | |
| <title>The Designers Guide to the Galaxy (of Code)</title> | |
| <link rel="stylesheet" href="http://bit.ly/2KzCR88"> | |
| </head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta lang="en-US"> | |
| <title>The Designers Guide to the Galaxy (of Code)</title> | |
| </head> | |
| <body> | |
| <!-- Here is our main header that is used across all the pages of our website --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Page title</title> | |
| </head> | |
| <body> | |
| <h1>Hello world!</h1> | |
| </body> | |
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Personal Atom settings and styles |