Last active
December 17, 2015 18:13
-
-
Save chrisdroukas/d8b19502d5f66549ccdc to your computer and use it in GitHub Desktop.
Safari Extension to restore old Twitter tab order
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Author</key> | |
| <string></string> // Your Name | |
| <key>Builder Version</key> | |
| <string>11601.3.9</string> | |
| <key>CFBundleDisplayName</key> | |
| <string>Twitter Navigation</string> | |
| <key>CFBundleIdentifier</key> | |
| <string></string> // Your Bundle Identifier | |
| <key>CFBundleInfoDictionaryVersion</key> | |
| <string>6.0</string> | |
| <key>CFBundleShortVersionString</key> | |
| <string>1.0</string> | |
| <key>CFBundleVersion</key> | |
| <string>1</string> | |
| <key>Content</key> | |
| <dict> | |
| <key>Stylesheets</key> | |
| <array> | |
| <string>navigation.css</string> | |
| </array> | |
| </dict> | |
| <key>Description</key> | |
| <string>Reorders navigation in Twitter</string> | |
| <key>DeveloperIdentifier</key> | |
| <string></string> // Your Developer ID | |
| <key>ExtensionInfoDictionaryVersion</key> | |
| <string>1.0</string> | |
| <key>Permissions</key> | |
| <dict> | |
| <key>Website Access</key> | |
| <dict> | |
| <key>Allowed Domains</key> | |
| <array> | |
| <string>twitter.com</string> | |
| </array> | |
| <key>Include Secure Pages</key> | |
| <true/> | |
| <key>Level</key> | |
| <string>Some</string> | |
| </dict> | |
| </dict> | |
| </dict> | |
| </plist> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <array/> | |
| </plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment